From e094952954ec5b1f643bc42581cfe46be15816e0 Mon Sep 17 00:00:00 2001 From: Shlomo Hecht Date: Wed, 25 Mar 2020 16:20:57 +0200 Subject: Version 1.4.6.19 new RML parameters, tension spring handling, some bug fixing --- .../Embedded/Modules/AlarmHandling/AlarmHandling.c | 10 ++-- .../Embedded/Modules/Control/MillisecTask.c | 4 +- .../Embedded/Modules/Diagnostics/Diagnostics.c | 9 +--- .../Embedded/Modules/Diagnostics/Diagnostics.h | 2 +- .../Embedded/Modules/General/GeneralHardware.c | 42 +++++++-------- .../Embedded_SW/Embedded/Modules/General/process.c | 6 ++- .../Embedded_SW/Embedded/Modules/General/process.h | 2 + .../Embedded/Modules/Heaters/Heaters_print.c | 4 +- .../Embedded/Modules/IDS/IDS_dispenser.c | 4 +- .../Embedded_SW/Embedded/Modules/IDS/IDS_maint.c | 2 +- .../Embedded_SW/Embedded/Modules/IDS/IDS_print.c | 17 +++--- .../Embedded/Modules/Thread/ThreadLoad.c | 24 ++++++--- .../Embedded/Modules/Thread/Thread_Winder.c | 6 +-- .../Embedded/Modules/Thread/Thread_print.c | 62 ++++++++++++++++++++++ 14 files changed, 133 insertions(+), 61 deletions(-) (limited to 'Software/Embedded_SW/Embedded/Modules') diff --git a/Software/Embedded_SW/Embedded/Modules/AlarmHandling/AlarmHandling.c b/Software/Embedded_SW/Embedded/Modules/AlarmHandling/AlarmHandling.c index 25022ab67..91389bb7f 100644 --- a/Software/Embedded_SW/Embedded/Modules/AlarmHandling/AlarmHandling.c +++ b/Software/Embedded_SW/Embedded/Modules/AlarmHandling/AlarmHandling.c @@ -974,15 +974,15 @@ void AlarmHandlingInternalSetAlarm(uint32_t AlarmId, bool value); void AlarmHandlingSetAlarm(uint32_t AlarmId, bool value) { - AlarmHandlingInternalSetAlarm( AlarmId, value); - /*AlarmHandlingMessageStruc Message; + //AlarmHandlingInternalSetAlarm( AlarmId, value); + AlarmHandlingMessageStruc Message; //send message to the Millisec task Message.messageId = AlarmHandlingAlarm; Message.AlarmId = AlarmId; Message.Value = value; if (AlarmHandlingMsgQ != NULL) - Mailbox_post(AlarmHandlingMsgQ , &Message, BIOS_NO_WAIT);*/ + Mailbox_post(AlarmHandlingMsgQ , &Message, BIOS_NO_WAIT); } void AlarmHandlingInternalSetAlarm(uint32_t AlarmId, bool value) { @@ -1461,11 +1461,11 @@ uint32_t AlarmHandlingLoop(uint32_t tick) } } } - if (AlarmItem[Alarm_i].Predecessor!=0xFF) + /*if (AlarmItem[Alarm_i].Predecessor!=0xFF) { if (AlarmState[AlarmItem[Alarm_i].Predecessor].Status == true) //higher hierarchy alarm is on Status = false; - } + }*/ if (Status != AlarmState[Alarm_i].Status) //change in alarm Status { if (Status == true) // alarm on diff --git a/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.c b/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.c index 0e95f4053..52775b6ab 100644 --- a/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.c +++ b/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.c @@ -118,7 +118,6 @@ static GateMutex_Handle gateMillisecDB; uint32_t Millisec_timerBase = TIMER1_BASE; //Timer handle /******************** Functions ********************************************/ -void CalculateVOCAlarms(void); //********************************************************************** /******************** CODE ********************************************/ //********************************************************************** @@ -749,7 +748,8 @@ uint32_t MillisecLowLoop(uint32_t tick) MotorGetStatusFromFPGA(Motor_i); }*/ midtankDisplay = 1-midtankDisplay; - Gas_PPM_Info = Calculate_Gas_Power_Consumption(); + if (WHS_Type == WHS_TYPE_UNKNOWN) + Gas_PPM_Info = Calculate_Gas_Power_Consumption(); //Trigger_WHS_MAX11614_Read_allADC(); #ifdef CONTROL_DEBUG ResetControlTime(); diff --git a/Software/Embedded_SW/Embedded/Modules/Diagnostics/Diagnostics.c b/Software/Embedded_SW/Embedded/Modules/Diagnostics/Diagnostics.c index bfcf379d0..0181121a3 100644 --- a/Software/Embedded_SW/Embedded/Modules/Diagnostics/Diagnostics.c +++ b/Software/Embedded_SW/Embedded/Modules/Diagnostics/Diagnostics.c @@ -238,19 +238,14 @@ uint32_t GetDiagnosticCollectionLimit(void) { return (DiagnosticLimit*DiagnosticCollectionLimit); } -void SetDiagnosticCollectionLimit(int limit) +/*void SetDiagnosticCollectionLimit(int limit) { if ((limit)&&(limit<= DIAGNOSTICS_LIMIT)) DiagnosticCollectionLimit = limit; DiagnosticLimit =eHundredMillisecond; //frequency of data collection - /*if (DiagnosticMode <= Diagnostic_Normal_Mode) - { - DiagnosticCollectionLimit = 1; //overrule - send at least once every second - DiagnosticLimit =eOneSecond; //frequency of data collection - }*/ REPORT_MSG(DiagnosticCollectionLimit,"Diagnostic limit set"); -} +}*/ uint8_t HeaterCounterIndex[HEATER_TYPE_MAX_HEATERS]= {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; double HeaterTemperature[HEATER_TYPE_MAX_HEATERS][DIAGNOSTICS_LIMIT+1]; diff --git a/Software/Embedded_SW/Embedded/Modules/Diagnostics/Diagnostics.h b/Software/Embedded_SW/Embedded/Modules/Diagnostics/Diagnostics.h index b7b1ec9c8..7ec1962f3 100644 --- a/Software/Embedded_SW/Embedded/Modules/Diagnostics/Diagnostics.h +++ b/Software/Embedded_SW/Embedded/Modules/Diagnostics/Diagnostics.h @@ -30,7 +30,7 @@ uint32_t StopDiagnosticsRequestFunc(MessageContainer* requestContainer); uint32_t DiagnosticsStart(void); uint32_t DiagnosticsStop(void); -void SetDiagnosticCollectionLimit(int limit); +//void SetDiagnosticCollectionLimit(int limit); uint32_t GetDiagnosticCollectionLimit(void); void DiagnosticsReset(void); diff --git a/Software/Embedded_SW/Embedded/Modules/General/GeneralHardware.c b/Software/Embedded_SW/Embedded/Modules/General/GeneralHardware.c index 618d4569c..f373e079d 100644 --- a/Software/Embedded_SW/Embedded/Modules/General/GeneralHardware.c +++ b/Software/Embedded_SW/Embedded/Modules/General/GeneralHardware.c @@ -61,10 +61,16 @@ uint32_t HWConfiguration(UploadHardwareConfigurationRequest* UploadRequest); bool GeneralHwReady = false; +bool PP_Machine = false; + HardwareBlower BlowerCfg; char *SW_INFO_DIR = "0://SysInfo"; char HwConfigPath[50] = "0://SysInfo//GenHwCfg.cfg"; +bool Is_PP_Machine(void) +{ + return PP_Machine; +} void *HWConfigurationLoadFromFile( uint32_t *NumOfBytes) { FRESULT Fresult = FR_OK; @@ -175,23 +181,14 @@ void LoadConfigurationParameters(ConfigurationParameters *Params) { EmbeddedParameters = my_malloc(sizeof(ConfigurationParameters)); configuration_parameters__init(EmbeddedParameters); + EmbeddedParameters->has_breaksensorlimit = true; EmbeddedParameters->breaksensorlimit = 10; - EmbeddedParameters->has_diagnosticcollectionlimit = true; - EmbeddedParameters->diagnosticcollectionlimit = 3; - EmbeddedParameters->has_overheatcountlimit = true; - EmbeddedParameters->overheatcountlimit = 3; - EmbeddedParameters->has_underheatcountlimit = true; - EmbeddedParameters->underheatcountlimit = 3; + EmbeddedParameters->has_closevalvetimeout = true; EmbeddedParameters->closevalvetimeout = 52; EmbeddedParameters->has_openvalvetimeout = true; EmbeddedParameters->openvalvetimeout = 52; - EmbeddedParameters->has_initialdispenserpressure = true; - EmbeddedParameters->initialdispenserpressure = 0.25; - EmbeddedParameters->has_initialdispensertimeout = true; - EmbeddedParameters->initialdispensertimeout = 180000; - EmbeddedParameters->has_initialdispensertimelag = true; - EmbeddedParameters->initialdispensertimelag = 100; + EmbeddedParameters->has_dispenserbuildpressurespeed = true; EmbeddedParameters->dispenserbuildpressurespeed=500; EmbeddedParameters->has_dispenserbuildpressurelimit = true; @@ -200,6 +197,7 @@ void LoadConfigurationParameters(ConfigurationParameters *Params) EmbeddedParameters->dispenserbuildpressuretimeout=150000; EmbeddedParameters->has_dispenserbuildpressurelag = true; EmbeddedParameters->dispenserbuildpressurelag=50; + EmbeddedParameters->has_acheatersloweroperationlimit = true; EmbeddedParameters->acheatersloweroperationlimit = 980; EmbeddedParameters->has_acheatersupperoperationlimit = true; @@ -208,12 +206,13 @@ void LoadConfigurationParameters(ConfigurationParameters *Params) EmbeddedParameters->dcheatersloweroperationlimit = 978; EmbeddedParameters->has_dcheatersupperoperationlimit = true; EmbeddedParameters->dcheatersupperoperationlimit = 1002; - EmbeddedParameters->has_midtankpressurecorrection = true; - EmbeddedParameters->midtankpressurecorrection = 0.0; + EmbeddedParameters->has_dispenserpresegmentwfcf = true; EmbeddedParameters->dispenserpresegmentwfcf = 40; + EmbeddedParameters->has_startheatingoninitsequence = true; EmbeddedParameters->startheatingoninitsequence = true; //set to true shlomo 14/5/2019 + EmbeddedParameters->n_generalparameters = 8; EmbeddedParameters->generalparameters = malloc (sizeof(double)*10); if (EmbeddedParameters->generalparameters) @@ -227,12 +226,12 @@ void LoadConfigurationParameters(ConfigurationParameters *Params) EmbeddedParameters->generalparameters[6] = Diagnostic_Extended_Mode; //Diagnostic Mode SetDiagnosticMode EmbeddedParameters->generalparameters[7] = AutoHoming_JobEnd_PowerOn_off; // } + EmbeddedParameters->has_currentalarmlowlimit = true; EmbeddedParameters->currentalarmlowlimit = 0.78; EmbeddedParameters->has_currentalarmhighlimit = true; EmbeddedParameters->currentalarmhighlimit= 1.07; - EmbeddedParameters->has_ids_segmentrefilltimeout = true; - EmbeddedParameters->ids_segmentrefilltimeout = 5000; + EmbeddedParameters->has_ids_presegmentbuilduptime = true; EmbeddedParameters->ids_presegmentbuilduptime = 5000; EmbeddedParameters->has_ids_cleaningspeed = true; @@ -245,6 +244,7 @@ void LoadConfigurationParameters(ConfigurationParameters *Params) EmbeddedParameters->ids_leftcleaningmotorspeed = 52; EmbeddedParameters->has_ids_rightcleaningmotorspeed = true; EmbeddedParameters->ids_rightcleaningmotorspeed = 52; + EmbeddedParameters->has_switchtoidletimeinseconds = true; EmbeddedParameters->switchtoidletimeinseconds = 3600; EmbeddedParameters->has_idledriertemperature = true; @@ -315,24 +315,24 @@ uint32_t EmbeddedParametersInit(void) } } - if (EmbeddedParameters->n_generalparameters >= 6) + /* if (EmbeddedParameters->n_generalparameters >= 6) { IDS_Dispenser_SetBackLashValues(EmbeddedParameters->initialdispenserpressure, EmbeddedParameters->initialdispensertimeout, EmbeddedParameters->initialdispensertimelag,EmbeddedParameters->generalparameters[5]); } else { IDS_Dispenser_SetBackLashValues(EmbeddedParameters->initialdispenserpressure, EmbeddedParameters->initialdispensertimeout, EmbeddedParameters->initialdispensertimelag,1000); - } + }*/ IDS_Dispenser_SetTimeOutValues(EmbeddedParameters->closevalvetimeout, EmbeddedParameters->openvalvetimeout); IDS_Dispenser_SetPrepareValues(EmbeddedParameters->dispenserbuildpressurespeed, EmbeddedParameters->dispenserbuildpressurelimit, EmbeddedParameters->dispenserbuildpressuretimeout, EmbeddedParameters->dispenserbuildpressurelag); IDS_Dispenser_SetPreSegmentWFCFValues(EmbeddedParameters->dispenserpresegmentwfcf, EmbeddedParameters->ids_presegment_wfcf_timebeforesegment); IDS_Dispenser_SetPreSegmentCleaningValues(EmbeddedParameters->ids_cleaningspeed,EmbeddedParameters->ids_cleaningstartspraypresegmenttime ,EmbeddedParameters->ids_cleaningstopbeforesegmenttime,EmbeddedParameters->ids_leftcleaningmotorspeed,EmbeddedParameters->ids_rightcleaningmotorspeed); - Heaters_SetOverHeatTimeOutValues( EmbeddedParameters->overheatcountlimit, EmbeddedParameters->underheatcountlimit); + //Heaters_SetOverHeatTimeOutValues( EmbeddedParameters->overheatcountlimit, EmbeddedParameters->underheatcountlimit); Heaters_SetOperationLimits(EmbeddedParameters->acheatersloweroperationlimit,EmbeddedParameters->acheatersupperoperationlimit,EmbeddedParameters->dcheatersloweroperationlimit,EmbeddedParameters->dcheatersupperoperationlimit); - MidTankPressureCorrection(EmbeddedParameters->midtankpressurecorrection); - SetDiagnosticCollectionLimit(EmbeddedParameters->diagnosticcollectionlimit); + //MidTankPressureCorrection(EmbeddedParameters->midtankpressurecorrection); + //SetDiagnosticCollectionLimit(EmbeddedParameters->diagnosticcollectionlimit); ThreadSetBreakSensorLimit(EmbeddedParameters->breaksensorlimit); PowerOffSetTemperatureThreshold(EmbeddedParameters->powerofftemperaturelimit); diff --git a/Software/Embedded_SW/Embedded/Modules/General/process.c b/Software/Embedded_SW/Embedded/Modules/General/process.c index 4cb35d488..5760d5b79 100644 --- a/Software/Embedded_SW/Embedded/Modules/General/process.c +++ b/Software/Embedded_SW/Embedded/Modules/General/process.c @@ -31,10 +31,11 @@ double dyeingspeed = 0; double dryerbufferlength = 0; double mininkuptake = 0; double feedertension = 0; -double pullertension = 0; -double windertension = 0; +double pullertension = 5000; +double windertension = 5000; double headairflow = 5.0; double dryerairflow = 5.0; +double pressurebuildup = 0; int32_t tableindex = 0; double dryerbufferMeters = 0; @@ -273,6 +274,7 @@ uint32_t HandleProcessParameters(ProcessParameters* ProcessParams,bool saveData) windertension = ProcessParams->windertension; headairflow = ProcessParams->headairflow; dryerairflow = ProcessParams->dryerairflow; + pressurebuildup = ProcessParams->pressurebuildup; return status;//status; } diff --git a/Software/Embedded_SW/Embedded/Modules/General/process.h b/Software/Embedded_SW/Embedded/Modules/General/process.h index a546ffdbe..695cf9516 100644 --- a/Software/Embedded_SW/Embedded/Modules/General/process.h +++ b/Software/Embedded_SW/Embedded/Modules/General/process.h @@ -17,6 +17,8 @@ extern double pullertension; extern double windertension; extern double headairflow; extern double dryerairflow; +extern double pressurebuildup; + extern int32_t tableindex; extern double dryerbufferMeters; diff --git a/Software/Embedded_SW/Embedded/Modules/Heaters/Heaters_print.c b/Software/Embedded_SW/Embedded/Modules/Heaters/Heaters_print.c index ca4255a95..373fdfaec 100644 --- a/Software/Embedded_SW/Embedded/Modules/Heaters/Heaters_print.c +++ b/Software/Embedded_SW/Embedded/Modules/Heaters/Heaters_print.c @@ -267,11 +267,11 @@ void HeatersControlInit(void) return; } -void Heaters_SetOverHeatTimeOutValues(uint32_t OverHeatTimeout, uint32_t UnderHeatTimeout) +/*void Heaters_SetOverHeatTimeOutValues(uint32_t OverHeatTimeout, uint32_t UnderHeatTimeout) { Overheat_Count_Limit = OverHeatTimeout; Underheat_Count_Limit = UnderHeatTimeout; -} +}*/ void Heaters_SetOperationLimits(int acheatersloweroperationlimit, int acheatersupperoperationlimit, int dcheatersloweroperationlimit, int dcheatersupperoperationlimit) { AcHeatersLoweroperationLimit = acheatersloweroperationlimit; diff --git a/Software/Embedded_SW/Embedded/Modules/IDS/IDS_dispenser.c b/Software/Embedded_SW/Embedded/Modules/IDS/IDS_dispenser.c index 6e4eed580..1176d3132 100644 --- a/Software/Embedded_SW/Embedded/Modules/IDS/IDS_dispenser.c +++ b/Software/Embedded_SW/Embedded/Modules/IDS/IDS_dispenser.c @@ -66,7 +66,7 @@ int32_t IdsGetMotorSpeed(uint32_t DispenserId) { return CurrentDispenserSpeed[DispenserId]; } - +/* uint32_t IDS_Dispenser_Build_Pressure_Callback(uint32_t DispenserId, uint32_t ReadValue) { uint32_t status; @@ -128,7 +128,7 @@ uint32_t IDS_Dispenser_Build_Pressure_Callback(uint32_t DispenserId, uint32_t Re return OK; } - +*/ uint32_t IDS_Dispenser_StopMotorCallback(uint32_t DispenserId, uint32_t ReadValue) { Report("IDS_Dispenser_Close_Valve_And_Stop_Motor callback",__FILE__,__LINE__,(int)DispenserId,RpWarning,(int)msec_millisecondCounter,0); diff --git a/Software/Embedded_SW/Embedded/Modules/IDS/IDS_maint.c b/Software/Embedded_SW/Embedded/Modules/IDS/IDS_maint.c index 3b6291285..107fd425b 100644 --- a/Software/Embedded_SW/Embedded/Modules/IDS/IDS_maint.c +++ b/Software/Embedded_SW/Embedded/Modules/IDS/IDS_maint.c @@ -102,7 +102,7 @@ void IDS_Dispenser_SetBackLashValues(double initialdispenserpressure, uint32 InitialDispenserPressure = initialdispenserpressure; InitialDispenserTimeout = initialdispensertimeout; InitialDispenserTimeLag = initialdispensertimelag; - InitialDispenserSpeed = INITIAL_DISPENSER_SPEED; + InitialDispenserSpeed = initialdispenserspeed; Report("IDS_Dispenser_SetBackLashValues ",__FILE__,InitialDispenserPressure*100,InitialDispenserTimeout,RpWarning,(int)InitialDispenserTimeLag,0); } diff --git a/Software/Embedded_SW/Embedded/Modules/IDS/IDS_print.c b/Software/Embedded_SW/Embedded/Modules/IDS/IDS_print.c index 0c28ee564..a34594d56 100644 --- a/Software/Embedded_SW/Embedded/Modules/IDS/IDS_print.c +++ b/Software/Embedded_SW/Embedded/Modules/IDS/IDS_print.c @@ -687,20 +687,23 @@ uint32_t InactiveDispenserHome(uint32_t DispenserId, uint32_t ReadValue) int Motor_i, Pid_Id; //start IDS control for all motors IDS_Active = true; + double cleanerFlow = 0; Valve_Set(VALVE_MIXCHIP_WASTECH, Mixer_Waste); - //JobTicket* JobTicket = JobDetails; + JobTicket* JobTicket = JobDetails; JobEndSequence = false; - if ((feedertension>0.1)&&(feedertension<1.5)) + if ((pressurebuildup>0.1)&&(pressurebuildup<1.5)) { - Report("Setting pressure from RML feeder tension",__FILE__,__LINE__,(int)(feedertension*100),RpWarning,(int)(DispenserPreparePressure*100),0); - DispenserPreparePressure = feedertension; + Report("Setting pressure from RML feeder tension",__FILE__,__LINE__,(int)(pressurebuildup*100),RpWarning,(int)(DispenserPreparePressure*100),0); + DispenserPreparePressure = pressurebuildup; } - if ((pullertension>200)&&(pullertension<1150)) + if (JobTicket->headcleaningparameters->has_cleanerflow) + cleanerFlow = JobTicket->headcleaningparameters->cleanerflow; + if ((cleanerFlow>200)&&(cleanerFlow<1150)) { - Report("Setting pressure from RML feeder tension",__FILE__,__LINE__,(int)(pullertension),RpWarning,(int)CleaningDispenserSpeed,0); - CleaningDispenserSpeed = pullertension; + Report("Setting pressure from RML feeder tension",__FILE__,__LINE__,(int)(cleanerFlow),RpWarning,(int)CleaningDispenserSpeed,0); + CleaningDispenserSpeed = cleanerFlow; } for (Motor_i = 0;Motor_i < MAX_SYSTEM_DISPENSERS;Motor_i++) diff --git a/Software/Embedded_SW/Embedded/Modules/Thread/ThreadLoad.c b/Software/Embedded_SW/Embedded/Modules/Thread/ThreadLoad.c index 698852f00..1181082ea 100644 --- a/Software/Embedded_SW/Embedded/Modules/Thread/ThreadLoad.c +++ b/Software/Embedded_SW/Embedded/Modules/Thread/ThreadLoad.c @@ -428,9 +428,14 @@ MotorMovetoLimitSwitch (HARDWARE_MOTOR_TYPE__MOTO_RDANCER,1-MotorsCfg[HARDWARE_MOTOR_TYPE__MOTO_RDANCER].directionthreadwize, 15, Motor_Id_to_LS_IdUp[HARDWARE_MOTOR_TYPE__MOTO_RDANCER], Thread_Load_HomingCallback,15000);*/ CallbackCounter++; MotorMovetoLimitSwitch (HARDWARE_MOTOR_TYPE__MOTO_LDANCER1,1-MotorsCfg[HARDWARE_MOTOR_TYPE__MOTO_LDANCER1].directionthreadwize, 500, Motor_Id_to_LS_IdUp[HARDWARE_MOTOR_TYPE__MOTO_LDANCER1], Thread_Load_HomingCallback,25000); - CallbackCounter++; - MotorMovetoLimitSwitch (HARDWARE_MOTOR_TYPE__MOTO_LDANCER2,1-MotorsCfg[HARDWARE_MOTOR_TYPE__MOTO_LDANCER2].directionthreadwize, 500, Motor_Id_to_LS_IdUp[HARDWARE_MOTOR_TYPE__MOTO_LDANCER2], Thread_Load_HomingCallback,25000); + status |= MCU_E2PromProgram(EEPROM_WINDER_TENSION_POSITION,1); + if (Is_PP_Machine() == true) //PP machine - new LTFU + { + CallbackCounter++; + MotorMovetoLimitSwitch (HARDWARE_MOTOR_TYPE__MOTO_LDANCER2,1-MotorsCfg[HARDWARE_MOTOR_TYPE__MOTO_LDANCER2].directionthreadwize, 500, Motor_Id_to_LS_IdUp[HARDWARE_MOTOR_TYPE__MOTO_LDANCER2], Thread_Load_HomingCallback,25000); + status |= MCU_E2PromProgram(EEPROM_PULLER_TENSION_POSITION,1); + } return OK; } uint32_t Thread_Load_Lift_Rockers(void) @@ -511,12 +516,15 @@ MotorSetMaxSpeed (HARDWARE_MOTOR_TYPE__MOTO_LDANCER1, 500); // MotorMovetoLimitSwitch (HARDWARE_MOTOR_TYPE__MOTO_LDANCER1,MotorsCfg[HARDWARE_MOTOR_TYPE__MOTO_LDANCER1].directionthreadwize, 500, Motor_Id_to_LS_IdDown[HARDWARE_MOTOR_TYPE__MOTO_LDANCER1], Thread_Load_HomingCallback,25000); - MotorMoveWithCallback (HARDWARE_MOTOR_TYPE__MOTO_LDANCER1, MotorsCfg[HARDWARE_MOTOR_TYPE__MOTO_LDANCER1].directionthreadwize, (5000*MotorsCfg[HARDWARE_MOTOR_TYPE__MOTO_LDANCER1].microstep), Thread_Load_HomingCallback,20000); - CallbackCounter++; - MotorSetMaxSpeed (HARDWARE_MOTOR_TYPE__MOTO_LDANCER2, 500); - -// MotorMovetoLimitSwitch (HARDWARE_MOTOR_TYPE__MOTO_LDANCER1,MotorsCfg[HARDWARE_MOTOR_TYPE__MOTO_LDANCER1].directionthreadwize, 500, Motor_Id_to_LS_IdDown[HARDWARE_MOTOR_TYPE__MOTO_LDANCER1], Thread_Load_HomingCallback,25000); - MotorMoveWithCallback (HARDWARE_MOTOR_TYPE__MOTO_LDANCER2, MotorsCfg[HARDWARE_MOTOR_TYPE__MOTO_LDANCER2].directionthreadwize, (5000*MotorsCfg[HARDWARE_MOTOR_TYPE__MOTO_LDANCER2].microstep), Thread_Load_HomingCallback,20000); + MotorMoveWithCallback (HARDWARE_MOTOR_TYPE__MOTO_LDANCER1, MotorsCfg[HARDWARE_MOTOR_TYPE__MOTO_LDANCER1].directionthreadwize, ((int)windertension*MotorsCfg[HARDWARE_MOTOR_TYPE__MOTO_LDANCER1].microstep), Thread_Load_HomingCallback,20000); + status |= MCU_E2PromProgram(EEPROM_WINDER_TENSION_POSITION,(int)windertension); + if (Is_PP_Machine() == true) //PP machine - new LTFU + { + CallbackCounter++; + MotorSetMaxSpeed (HARDWARE_MOTOR_TYPE__MOTO_LDANCER2, 500); + MotorMoveWithCallback (HARDWARE_MOTOR_TYPE__MOTO_LDANCER2, MotorsCfg[HARDWARE_MOTOR_TYPE__MOTO_LDANCER2].directionthreadwize, ((int)pullertension*MotorsCfg[HARDWARE_MOTOR_TYPE__MOTO_LDANCER2].microstep), Thread_Load_HomingCallback,20000); + status |= MCU_E2PromProgram(EEPROM_PULLER_TENSION_POSITION,(int)pullertension); + } return OK; } diff --git a/Software/Embedded_SW/Embedded/Modules/Thread/Thread_Winder.c b/Software/Embedded_SW/Embedded/Modules/Thread/Thread_Winder.c index 78150e9f9..3b97e9eb7 100644 --- a/Software/Embedded_SW/Embedded/Modules/Thread/Thread_Winder.c +++ b/Software/Embedded_SW/Embedded/Modules/Thread/Thread_Winder.c @@ -149,9 +149,9 @@ uint32_t Winder_Prepare(void *JobDetails) if (FPGA_Read_limit_Switches(GPI_SW_SPOOL_EXISTS)==LIMIT) { REPORT_MSG(LIMIT, "No cone in winder"); - PrepareReady(Module_Winder,ModuleFail); - AlarmHandlingSetAlarm(EVENT_TYPE__WINDER_CONE_DOES_NOT_EXIST,true); - return ERROR; + //PrepareReady(Module_Winder,ModuleFail); + //AlarmHandlingSetAlarm(EVENT_TYPE__WINDER_CONE_DOES_NOT_EXIST,true); + //return ERROR; } #ifdef READ_SCREW_ENCODER diff --git a/Software/Embedded_SW/Embedded/Modules/Thread/Thread_print.c b/Software/Embedded_SW/Embedded/Modules/Thread/Thread_print.c index be6644067..fb8fa4711 100644 --- a/Software/Embedded_SW/Embedded/Modules/Thread/Thread_print.c +++ b/Software/Embedded_SW/Embedded/Modules/Thread/Thread_print.c @@ -35,6 +35,7 @@ #include "modules/ids/ids_ex.h" #include "Modules/AlarmHandling/AlarmHandling.h" #include "Control/MillisecTask.h" +#include "drivers/Flash_ram/MCU_E2Prom.h" ////////////////////////////////State machine operation//////////////////////////////////// //the state machine operation is used to operate in runtime correct profile flow execution @@ -789,11 +790,61 @@ uint32_t HandleJobThreadControlParameters(ThreadParameters* ThreadParams) return OK; } +uint32_t ThreadPrepare_Tension (int DancerId, double tension) +{ + int current, request = (int)tension,movement; + int HW_Motor_Id; + bool direction; + uint32_t status = OK, address = 0; + switch (DancerId) + { + case HARDWARE_DANCER_TYPE__LeftDancer: + address = EEPROM_WINDER_TENSION_POSITION; + HW_Motor_Id = HARDWARE_MOTOR_TYPE__MOTO_LDANCER1; + break; + case HARDWARE_DANCER_TYPE__MiddleDancer: + if (Is_PP_Machine() == false) //LP machine - old LTFU + return OK; + address = EEPROM_PULLER_TENSION_POSITION; + HW_Motor_Id = HARDWARE_MOTOR_TYPE__MOTO_LDANCER2; + break; + case HARDWARE_DANCER_TYPE__RightDancer: + return ERROR; + default: + return ERROR; + } + status |= MCU_E2PromRead(address,¤t); + if ((status!= OK )||(current == 0)||(current == 0xFFFF)) + return status; + if (abs(current - request)<100) + return status; + else + { + if (current < request) //go down + { + direction = MotorsCfg[HW_Motor_Id].directionthreadwize; + movement = request - current; + } + else + { + direction = 1-MotorsCfg[HW_Motor_Id].directionthreadwize; + movement = current - request; + } + MotorMoveWithCallback (HW_Motor_Id, direction, (movement*MotorsCfg[HW_Motor_Id].microstep), NULL,20000); + status |= MCU_E2PromProgram(address,request); + } + usnprintf(Lenstr, 100, "ThreadPrepare_Tension Dancer %d Request: %d Current %d movement %d dir %d motor %d address %d", + DancerId,request,current,movement,direction,HW_Motor_Id,address); + ReportWithPackageFilter(ThreadFilter,Lenstr,__FILE__,address,HARDWARE_MOTOR_TYPE__MOTO_DH_LID,RpFatalError,LIMIT,0); + + return status; +} //******************************************************************************************************************** uint32_t ThreadPrepareState(void *JobDetails) { int Motor_i,i, HW_Motor_Id, Pid_Id; JobTicket* JobTicket = JobDetails; + uint32_t status = OK; CurrentSegmentId = 0; JobCounter = 0; @@ -810,11 +861,22 @@ uint32_t HandleJobThreadControlParameters(ThreadParameters* ThreadParams) AlarmHandlingSetAlarm(EVENT_TYPE__WINDER_CONE_DOES_NOT_EXIST,false); AlarmHandlingSetAlarm(EVENT_TYPE__FPGA_WATCHDOG_ACTIVATED,false); +// status |= MCU_E2PromProgram(EEPROM_STORAGE_DANCER_0,DancersCfg[0].zeropoint); +// double feedertension = 0; +// double pullertension = 0; +// double windertension = 0; EnableLubrication = JobTicket->enablelubrication; EnableIntersegment = JobTicket->enableintersegment; IntersegmentLength = JobTicket->intersegmentlength; + status = ThreadPrepare_Tension (HARDWARE_DANCER_TYPE__LeftDancer, windertension); + ReportWithPackageFilter(ThreadFilter,"ThreadPrepare_Tension",__FILE__,HARDWARE_DANCER_TYPE__LeftDancer,status,RpFatalError,(int)windertension,0); + status = ThreadPrepare_Tension (HARDWARE_DANCER_TYPE__MiddleDancer, pullertension); + ReportWithPackageFilter(ThreadFilter,"ThreadPrepare_Tension",__FILE__,HARDWARE_DANCER_TYPE__MiddleDancer,status,RpFatalError,(int)pullertension,0); + status = ThreadPrepare_Tension (HARDWARE_DANCER_TYPE__RightDancer, feedertension); + ReportWithPackageFilter(ThreadFilter,"ThreadPrepare_Tension",__FILE__,HARDWARE_DANCER_TYPE__RightDancer,status,RpFatalError,(int)feedertension,0); + FirstCalcInJob = true; if(MotorsCfg[HARDWARE_MOTOR_TYPE__MOTO_RDRIVING].speedmaster == false) { -- cgit v1.3.1 From 5251d2c965721082f3f206b95a4e5c6c5180cd43 Mon Sep 17 00:00:00 2001 From: Avi Levkovich Date: Sun, 29 Mar 2020 12:31:05 +0300 Subject: update stub new head I/O (0x0EAD) --- .../Embedded.1560423654045.pdom | Bin 15249408 -> 17899520 bytes .../.history/0/005ea9e78f71001a1f70833eb9ed7011 | 26 + .../.history/0/30e3219c8f71001a1f70833eb9ed7011 | 38 + .../.history/0/408dc7f0bf6e001a17dd93e105fd0cb6 | 269 - .../.history/0/409dba419b71001a1f70833eb9ed7011 | 43 + .../.history/0/619caa6e8771001a1f70833eb9ed7011 | 26 + .../.history/0/a008366e8771001a1f70833eb9ed7011 | 26 + .../.history/0/c0d8988a9571001a1f70833eb9ed7011 | 50 + .../.history/1/00b349419b71001a1f70833eb9ed7011 | 57 + .../.history/1/204988ca9071001a1f70833eb9ed7011 | 15 + .../.history/1/204d019a8f71001a1f70833eb9ed7011 | 85 + .../.history/1/20aa1fabb06e001a18bbdaa1f718f3a2 | 50 - .../.history/1/60371317b66e001a173da96cce181ab0 | 162 - .../.history/1/81f5dd398871001a1f70833eb9ed7011 | 22 + .../.history/1/a0ddb218b66e001a173da96cce181ab0 | 15 - .../.history/1/b093bee78f71001a1f70833eb9ed7011 | 26 + .../.history/1/d0618e6e8771001a1f70833eb9ed7011 | 26 + .../.history/1/d09a2a18b66e001a173da96cce181ab0 | 26 - .../.history/1/e0bed4998f71001a1f70833eb9ed7011 | 50 + .../.history/10/60aba18db56e001a173da96cce181ab0 | 29 - .../.history/10/a09212cc9071001a1f70833eb9ed7011 | 26 + .../.history/10/c19f589b8f71001a1f70833eb9ed7011 | 15 + .../.history/10/d0459fac9071001a1f70833eb9ed7011 | 43 + .../.history/11/201df859086d001a1f3dc7d0d6cfdd9d | 26 - .../.history/11/20d8f6cc9071001a1f70833eb9ed7011 | 36 + .../.history/11/30bc16cd9071001a1f70833eb9ed7011 | 50 + .../.history/11/607910e78f71001a1f70833eb9ed7011 | 26 + .../.history/11/60a519adb06e001a18bbdaa1f718f3a2 | 26 - .../.history/11/712a223a8871001a1f70833eb9ed7011 | 36 + .../.history/11/b007b0398871001a1f70833eb9ed7011 | 26 + .../.history/11/f0d1a7e39a71001a1f70833eb9ed7011 | 26 + .../.history/12/10103badb06e001a18bbdaa1f718f3a2 | 44 - .../.history/12/101345e68f71001a1f70833eb9ed7011 | 152 + .../.history/12/30168ae78f71001a1f70833eb9ed7011 | 26 + .../.history/12/30eeb0ab9071001a1f70833eb9ed7011 | 26 + .../.history/12/30f89bca9071001a1f70833eb9ed7011 | 15 + .../.history/12/4014b6429b71001a1f70833eb9ed7011 | 26 + .../.history/12/503baa398871001a1f70833eb9ed7011 | 29 + .../.history/12/7072eee68f71001a1f70833eb9ed7011 | 26 + .../.history/12/70852eb58771001a1f70833eb9ed7011 | 32 + .../.history/12/70cf738b9571001a1f70833eb9ed7011 | 57 + .../.history/12/a063608a9571001a1f70833eb9ed7011 | 410 ++ .../.history/12/b054be388871001a1f70833eb9ed7011 | 32 + .../.history/12/d009399b8f71001a1f70833eb9ed7011 | 38 + .../.history/12/d02c3bac9071001a1f70833eb9ed7011 | 15 + .../.history/12/f01a51ab9071001a1f70833eb9ed7011 | 62 + .../.history/12/f01f2f6d8771001a1f70833eb9ed7011 | 15 + .../.history/12/f08d9c419b71001a1f70833eb9ed7011 | 146 + .../.history/13/11b928b58771001a1f70833eb9ed7011 | 26 + .../.history/13/308ace1d146d001a1f3dc7d0d6cfdd9d | 26 - .../.history/13/40e7078eb56e001a173da96cce181ab0 | 15 - .../.history/13/702715240d6d001a1f3dc7d0d6cfdd9d | 26 - .../.history/13/909724ac9071001a1f70833eb9ed7011 | 62 + .../.history/13/91220b8b9571001a1f70833eb9ed7011 | 29 + .../.history/13/a0af1ee49a71001a1f70833eb9ed7011 | 188 + .../.history/13/c02d64ab9071001a1f70833eb9ed7011 | 26 + .../.history/13/d045756c8771001a1f70833eb9ed7011 | 62 + .../.history/13/d073519b8f71001a1f70833eb9ed7011 | 15 + .../.history/13/e0055a8b9571001a1f70833eb9ed7011 | 22 + .../.history/13/e170d59b8f71001a1f70833eb9ed7011 | 22 + .../.history/14/10036e8b9571001a1f70833eb9ed7011 | 15 + .../.history/14/205c91398871001a1f70833eb9ed7011 | 15 + .../.history/14/40e6234f9571001a1f70833eb9ed7011 | 86 + .../.history/14/40fa9b18b66e001a173da96cce181ab0 | 26 - .../.history/14/60387518b66e001a173da96cce181ab0 | 32 - .../.history/14/7063b8e58f71001a1f70833eb9ed7011 | 85 + .../.history/14/70ba9facb06e001a18bbdaa1f718f3a2 | 15 - .../.history/14/80a3568eb56e001a173da96cce181ab0 | 15 - .../.history/14/a094a8ac9071001a1f70833eb9ed7011 | 32 + .../.history/14/a0c15f509571001a1f70833eb9ed7011 | 29 + .../.history/14/c0728d419b71001a1f70833eb9ed7011 | 62 + .../.history/14/d0d486398871001a1f70833eb9ed7011 | 29 + .../.history/14/f1ae2c6d8771001a1f70833eb9ed7011 | 26 + .../.history/15/001425419b71001a1f70833eb9ed7011 | 32 + .../.history/15/00c27f429b71001a1f70833eb9ed7011 | 32 + .../.history/15/3023368eb56e001a173da96cce181ab0 | 22 - .../.history/15/4054463a8871001a1f70833eb9ed7011 | 56 + .../.history/15/406c1bcc9071001a1f70833eb9ed7011 | 38 + .../.history/15/409699e29a71001a1f70833eb9ed7011 | 50 + .../.history/15/40b7d8e19a71001a1f70833eb9ed7011 | 44 + .../.history/15/40efe28cb56e001a173da96cce181ab0 | 152 - .../.history/15/904dd3acb06e001a18bbdaa1f718f3a2 | 22 - .../.history/15/e01982398871001a1f70833eb9ed7011 | 62 + .../.history/16/00a57fab9071001a1f70833eb9ed7011 | 26 + .../.history/16/50d3b7cc9071001a1f70833eb9ed7011 | 26 + .../.history/16/60360f8a9571001a1f70833eb9ed7011 | 58 + .../.history/16/605003cc9071001a1f70833eb9ed7011 | 57 + .../.history/16/70ceb2e39a71001a1f70833eb9ed7011 | 15 + .../.history/16/80439518b66e001a173da96cce181ab0 | 26 - .../.history/16/c000e3e68f71001a1f70833eb9ed7011 | 15 + .../.history/16/d0fb5a4f9571001a1f70833eb9ed7011 | 463 ++ .../.history/16/f1d9528b9571001a1f70833eb9ed7011 | 22 + .../.history/17/00954f509571001a1f70833eb9ed7011 | 26 + .../.history/17/102dd48db56e001a173da96cce181ab0 | 29 - .../.history/17/200834419b71001a1f70833eb9ed7011 | 43 + .../.history/17/209ee4e19a71001a1f70833eb9ed7011 | 57 + .../.history/17/20fb48f60a6d001a1f3dc7d0d6cfdd9d | 15 - .../.history/17/307e18abb06e001a18bbdaa1f718f3a2 | 62 - .../.history/17/40e83d10086d001a1f3dc7d0d6cfdd9d | 26 - .../.history/17/40ef99e39a71001a1f70833eb9ed7011 | 22 + .../.history/17/50931de39a71001a1f70833eb9ed7011 | 26 + .../.history/17/a03823e39a71001a1f70833eb9ed7011 | 38 + .../.history/17/d085253a8871001a1f70833eb9ed7011 | 50 + .../.history/18/213d41509571001a1f70833eb9ed7011 | 15 + .../.history/18/304302519571001a1f70833eb9ed7011 | 32 + .../.history/18/3058c0509571001a1f70833eb9ed7011 | 22 + .../.history/18/30f14f3a8871001a1f70833eb9ed7011 | 29 + .../.history/18/40f297acb06e001a18bbdaa1f718f3a2 | 26 - .../.history/18/60c24db48771001a1f70833eb9ed7011 | 62 + .../.history/18/813df14e9571001a1f70833eb9ed7011 | 29 + .../.history/18/a03a479b8f71001a1f70833eb9ed7011 | 15 + .../.history/18/a0f6038b9571001a1f70833eb9ed7011 | 56 + .../.history/18/e0a088e58f71001a1f70833eb9ed7011 | 50 + .../.history/18/f0546dabb06e001a18bbdaa1f718f3a2 | 183 - .../.history/19/20ad45398871001a1f70833eb9ed7011 | 170 + .../.history/19/40a6f8509571001a1f70833eb9ed7011 | 15 + .../.history/19/61ecb69b8f71001a1f70833eb9ed7011 | 15 + .../.history/19/c037ed398871001a1f70833eb9ed7011 | 32 + .../.history/19/d0321f29c36e001a17dd93e105fd0cb6 | 35 - .../.history/1a/1081ba429b71001a1f70833eb9ed7011 | 22 + .../.history/1a/201a77e29a71001a1f70833eb9ed7011 | 146 + .../.history/1a/60495cac9071001a1f70833eb9ed7011 | 36 + .../.history/1a/707228adb06e001a18bbdaa1f718f3a2 | 15 - .../.history/1a/91c33a6e8771001a1f70833eb9ed7011 | 26 + .../.history/1a/f0598c9b8f71001a1f70833eb9ed7011 | 32 + .../.history/1a/f0d811e78f71001a1f70833eb9ed7011 | 15 + .../.history/1b/10182c8b9571001a1f70833eb9ed7011 | 15 + .../.history/1b/10cee6b48771001a1f70833eb9ed7011 | 26 + .../.history/1b/30402620f06c001a1f3dc7d0d6cfdd9d | 15 - .../.history/1b/70563818b66e001a173da96cce181ab0 | 26 - .../.history/1b/902727b48771001a1f70833eb9ed7011 | 104 + .../.history/1b/90ea21429b71001a1f70833eb9ed7011 | 57 + .../.history/1b/a033b7398871001a1f70833eb9ed7011 | 26 + .../.history/1b/a0d51f398871001a1f70833eb9ed7011 | 146 + .../.history/1b/a1aca1509571001a1f70833eb9ed7011 | 26 + .../.history/1b/c0650f3a8871001a1f70833eb9ed7011 | 22 + .../.history/1b/d039c1b38771001a1f70833eb9ed7011 | 58 + .../.history/1b/d0810eadb06e001a18bbdaa1f718f3a2 | 15 - .../.history/1c/21ad45398871001a1f70833eb9ed7011 | 183 + .../.history/1c/302abbb48771001a1f70833eb9ed7011 | 50 + .../.history/1c/40afb8a1e46c001a1f3dc7d0d6cfdd9d | 15 - .../.history/1c/5060359b8f71001a1f70833eb9ed7011 | 15 + .../.history/1c/60b4f48a9571001a1f70833eb9ed7011 | 29 + .../.history/1c/704f13439b71001a1f70833eb9ed7011 | 29 + .../.history/1c/903608e39a71001a1f70833eb9ed7011 | 62 + .../.history/1c/90b9bb429b71001a1f70833eb9ed7011 | 26 + .../.history/1c/a0989aca9071001a1f70833eb9ed7011 | 26 + .../.history/1c/b13840b58771001a1f70833eb9ed7011 | 36 + .../.history/1c/c092dc509571001a1f70833eb9ed7011 | 15 + .../.history/1c/e02edc4e9571001a1f70833eb9ed7011 | 58 + .../.history/1d/003087e78f71001a1f70833eb9ed7011 | 32 + .../.history/1d/203d41509571001a1f70833eb9ed7011 | 26 + .../.history/1d/304c7a36d76e001a1c4ce2378ee7c6e4 | 55 - .../.history/1d/5033ed8db56e001a173da96cce181ab0 | 32 - .../.history/1d/8185cc388871001a1f70833eb9ed7011 | 43 + .../.history/1d/902d49f6db6c001a1f3dc7d0d6cfdd9d | 26 - .../.history/1d/90a4258a9571001a1f70833eb9ed7011 | 38 + .../.history/1d/a05185cc9071001a1f70833eb9ed7011 | 22 + .../.history/1d/a0abf8e68f71001a1f70833eb9ed7011 | 56 + .../.history/1d/b062a8ab9071001a1f70833eb9ed7011 | 26 + .../.history/1d/c1c6ea398871001a1f70833eb9ed7011 | 22 + .../.history/1d/d03273e78f71001a1f70833eb9ed7011 | 22 + .../.history/1d/d0e4539b8f71001a1f70833eb9ed7011 | 32 + .../.history/1e/008b20429b71001a1f70833eb9ed7011 | 62 + .../.history/1e/107800adb06e001a18bbdaa1f718f3a2 | 26 - .../.history/1e/619f368b9571001a1f70833eb9ed7011 | 32 + .../.history/1e/a07246e68f71001a1f70833eb9ed7011 | 162 + .../.history/1e/a1e1458b9571001a1f70833eb9ed7011 | 22 + .../.history/1e/c045cd429b71001a1f70833eb9ed7011 | 44 + .../.history/1e/e08831398871001a1f70833eb9ed7011 | 62 + .../.history/1e/f0703e18b66e001a173da96cce181ab0 | 26 - .../.history/1e/f089a218b66e001a173da96cce181ab0 | 15 - .../.history/1f/10d5bcab9071001a1f70833eb9ed7011 | 15 + .../.history/1f/9099079b8f71001a1f70833eb9ed7011 | 722 +++ .../.history/1f/90a699e78f71001a1f70833eb9ed7011 | 32 + .../.history/1f/c0394129c36e001a17dd93e105fd0cb6 | 97 - .../.history/1f/d0f058b58771001a1f70833eb9ed7011 | 188 + .../.history/1f/f01261b7c06e001a17dd93e105fd0cb6 | 121 - .../.history/1f/f059bbe39a71001a1f70833eb9ed7011 | 15 + .../.history/2/30c5df4c0c6d001a1f3dc7d0d6cfdd9d | 15 - .../.history/2/41cfd36e8771001a1f70833eb9ed7011 | 15 + .../.history/2/50e9388b9571001a1f70833eb9ed7011 | 22 + .../.history/2/515a3b8b9571001a1f70833eb9ed7011 | 15 + .../.history/2/51bedfb38771001a1f70833eb9ed7011 | 36 + .../.history/2/51f22d6e8771001a1f70833eb9ed7011 | 26 + .../.history/2/70549e398871001a1f70833eb9ed7011 | 15 + .../.history/2/80cc27e39a71001a1f70833eb9ed7011 | 15 + .../.history/2/905dfaacb06e001a18bbdaa1f718f3a2 | 22 - .../.history/2/a0dc988eb56e001a173da96cce181ab0 | 50 - .../.history/20/00dd7fe78f71001a1f70833eb9ed7011 | 32 + .../.history/20/10787d429b71001a1f70833eb9ed7011 | 22 + .../.history/20/20129acc9071001a1f70833eb9ed7011 | 26 + .../.history/20/205a9b6e8771001a1f70833eb9ed7011 | 15 + .../.history/20/20dcfe998f71001a1f70833eb9ed7011 | 86 + .../.history/20/80d520aaf46c001a1f3dc7d0d6cfdd9d | 15 - .../.history/20/a0f3776e8771001a1f70833eb9ed7011 | 32 + .../.history/20/b1e2709b8f71001a1f70833eb9ed7011 | 22 + .../.history/20/c0b85d18b66e001a173da96cce181ab0 | 26 - .../.history/20/e050b4cc9071001a1f70833eb9ed7011 | 26 + .../.history/20/e0abd9ab9071001a1f70833eb9ed7011 | 22 + .../.history/21/304cd7a99071001a1f70833eb9ed7011 | 36 + .../.history/21/30fc84ab9071001a1f70833eb9ed7011 | 38 + .../.history/21/32fdd0398871001a1f70833eb9ed7011 | 26 + .../.history/21/703fe0398871001a1f70833eb9ed7011 | 32 + .../.history/21/d0622e419b71001a1f70833eb9ed7011 | 38 + .../.history/21/e0f933398871001a1f70833eb9ed7011 | 57 + .../.history/22/0018e9b48771001a1f70833eb9ed7011 | 15 + .../.history/22/20138de29a71001a1f70833eb9ed7011 | 162 + .../.history/22/3057ce429b71001a1f70833eb9ed7011 | 36 + .../.history/22/51fef68a9571001a1f70833eb9ed7011 | 26 + .../.history/22/80cdd28db56e001a173da96cce181ab0 | 38 - .../.history/22/b0535cadb06e001a18bbdaa1f718f3a2 | 50 - .../.history/22/b09b5aac9071001a1f70833eb9ed7011 | 44 + .../.history/22/e05d9a16b66e001a173da96cce181ab0 | 62 - .../.history/23/101d48b48771001a1f70833eb9ed7011 | 152 + .../.history/23/10508f18b66e001a173da96cce181ab0 | 22 - .../.history/23/110bceb38771001a1f70833eb9ed7011 | 29 + .../.history/23/114be58a9571001a1f70833eb9ed7011 | 57 + .../.history/23/2039338a9571001a1f70833eb9ed7011 | 62 + .../.history/23/302e61b58771001a1f70833eb9ed7011 | 50 + .../.history/23/408afc2a7471001a1c4ce2378ee7c6e4 | 164 + .../.history/23/607774429b71001a1f70833eb9ed7011 | 22 + .../.history/23/702995e29a71001a1f70833eb9ed7011 | 57 + .../.history/23/70600b6c8771001a1f70833eb9ed7011 | 38 + .../.history/23/802651519571001a1f70833eb9ed7011 | 29 + .../.history/23/90a7daa99071001a1f70833eb9ed7011 | 32 + .../.history/23/b011838b9571001a1f70833eb9ed7011 | 32 + .../.history/23/b0f0fb6e8771001a1f70833eb9ed7011 | 32 + .../.history/23/c0a41ccc9071001a1f70833eb9ed7011 | 29 + .../.history/23/c0d9b26e8771001a1f70833eb9ed7011 | 32 + .../.history/23/d0e919e39a71001a1f70833eb9ed7011 | 26 + .../.history/23/e0a6896e8771001a1f70833eb9ed7011 | 15 + .../.history/23/f04055cc9071001a1f70833eb9ed7011 | 15 + .../.history/23/f0521aabb06e001a18bbdaa1f718f3a2 | 57 - .../.history/24/50fcd3e19a71001a1f70833eb9ed7011 | 29 + .../.history/24/609cdcacb06e001a18bbdaa1f718f3a2 | 22 - .../.history/24/a052b9ab9071001a1f70833eb9ed7011 | 15 + .../.history/24/c0130fac9071001a1f70833eb9ed7011 | 26 + .../.history/24/c0a96f8eb56e001a173da96cce181ab0 | 32 - .../.history/24/d018e78db56e001a173da96cce181ab0 | 15 - .../.history/25/1086d48eb56e001a173da96cce181ab0 | 204 - .../.history/25/2029d8398871001a1f70833eb9ed7011 | 32 + .../.history/25/503f9718b66e001a173da96cce181ab0 | 15 - .../.history/25/60d989e58f71001a1f70833eb9ed7011 | 43 + .../.history/25/70e0ace78f71001a1f70833eb9ed7011 | 26 + .../.history/25/9059226e8771001a1f70833eb9ed7011 | 26 + .../.history/25/b0dc60acb06e001a18bbdaa1f718f3a2 | 26 - .../.history/25/e07c05e78f71001a1f70833eb9ed7011 | 26 + .../.history/25/f043f0b48771001a1f70833eb9ed7011 | 15 + .../.history/26/00abbf6e8771001a1f70833eb9ed7011 | 44 + .../.history/26/10af75aa9071001a1f70833eb9ed7011 | 106 + .../.history/26/30363cb48771001a1f70833eb9ed7011 | 146 + .../.history/26/8067d1388871001a1f70833eb9ed7011 | 38 + .../.history/26/9075fc8db56e001a173da96cce181ab0 | 26 - .../.history/26/a0cc878b9571001a1f70833eb9ed7011 | 44 + .../.history/26/c0e73fac9071001a1f70833eb9ed7011 | 22 + .../.history/26/d001d68db56e001a173da96cce181ab0 | 26 - .../.history/26/d04434509571001a1f70833eb9ed7011 | 57 + .../.history/26/d1054a6e8771001a1f70833eb9ed7011 | 36 + .../.history/26/d1764c6e8771001a1f70833eb9ed7011 | 15 + .../.history/26/e035ffe29a71001a1f70833eb9ed7011 | 632 +++ .../.history/26/f0a853429b71001a1f70833eb9ed7011 | 15 + .../.history/27/40006cacb06e001a18bbdaa1f718f3a2 | 15 - .../.history/27/40369218b66e001a173da96cce181ab0 | 32 - .../.history/27/40db9c8b9571001a1f70833eb9ed7011 | 56 + .../.history/27/506894b48771001a1f70833eb9ed7011 | 722 +++ .../.history/27/90b813e88f71001a1f70833eb9ed7011 | 43 + .../.history/27/a02ca0cc9071001a1f70833eb9ed7011 | 22 + .../.history/27/a0322f82f56c001a1f3dc7d0d6cfdd9d | 15 - .../.history/27/a0db6de78f71001a1f70833eb9ed7011 | 32 + .../.history/27/a158429b8f71001a1f70833eb9ed7011 | 15 + .../.history/27/b08b33ac9071001a1f70833eb9ed7011 | 15 + .../.history/27/c05d528eb56e001a173da96cce181ab0 | 26 - .../.history/27/d0cc0dcb9071001a1f70833eb9ed7011 | 463 ++ .../.history/28/002da7b48771001a1f70833eb9ed7011 | 38 + .../.history/28/10bf158db56e001a173da96cce181ab0 | 170 - .../.history/28/30fdd0398871001a1f70833eb9ed7011 | 32 + .../.history/28/506f9b16b66e001a173da96cce181ab0 | 57 - .../.history/28/70b54ccc9071001a1f70833eb9ed7011 | 26 + .../.history/28/a0f0e2429b71001a1f70833eb9ed7011 | 50 + .../.history/28/b011b3e29a71001a1f70833eb9ed7011 | 183 + .../.history/28/e0b48f8eb56e001a173da96cce181ab0 | 36 - .../.history/29/0012f0b38771001a1f70833eb9ed7011 | 86 + .../.history/29/109ae5cc9071001a1f70833eb9ed7011 | 26 + .../.history/29/10e90f4f9571001a1f70833eb9ed7011 | 36 + .../.history/29/2101e4998f71001a1f70833eb9ed7011 | 29 + .../.history/29/405c2d429b71001a1f70833eb9ed7011 | 26 + .../.history/29/40cfd36e8771001a1f70833eb9ed7011 | 26 + .../.history/29/5010296e8771001a1f70833eb9ed7011 | 26 + .../.history/29/50d120adb06e001a18bbdaa1f718f3a2 | 15 - .../.history/29/70444ce39a71001a1f70833eb9ed7011 | 15 + .../.history/29/8060fdab9071001a1f70833eb9ed7011 | 32 + .../.history/29/907e4f8b9571001a1f70833eb9ed7011 | 26 + .../.history/29/a180c5388871001a1f70833eb9ed7011 | 15 + .../.history/29/b03395ac9071001a1f70833eb9ed7011 | 56 + .../.history/29/b06c1d6d8771001a1f70833eb9ed7011 | 38 + .../.history/29/c08cabe19a71001a1f70833eb9ed7011 | 32 + .../.history/29/c0b2acacb06e001a18bbdaa1f718f3a2 | 15 - .../.history/29/f0601718b66e001a173da96cce181ab0 | 15 - .../.history/2a/0115174f9571001a1f70833eb9ed7011 | 57 + .../.history/2a/800abaaab06e001a18bbdaa1f718f3a2 | 106 - .../.history/2a/803df14e9571001a1f70833eb9ed7011 | 38 + .../.history/2a/a07e88ab9071001a1f70833eb9ed7011 | 26 + .../.history/2a/b075b518b66e001a173da96cce181ab0 | 32 - .../.history/2b/100b6ae78f71001a1f70833eb9ed7011 | 26 + .../.history/2b/80a276da6d6e001a1f3dc7d0d6cfdd9d | 15 - .../.history/2b/b01cfdacb06e001a18bbdaa1f718f3a2 | 32 - .../.history/2b/d01ab8509571001a1f70833eb9ed7011 | 22 + .../.history/2c/0008278eb56e001a173da96cce181ab0 | 32 - .../.history/2c/2001e4998f71001a1f70833eb9ed7011 | 38 + .../.history/2c/30b790e58f71001a1f70833eb9ed7011 | 38 + .../.history/2c/40626fe78f71001a1f70833eb9ed7011 | 22 + .../.history/2c/40ab57e29a71001a1f70833eb9ed7011 | 57 + .../.history/2c/40c85fcc9071001a1f70833eb9ed7011 | 26 + .../.history/2c/50457d8b9571001a1f70833eb9ed7011 | 26 + .../.history/2c/50c43d8eb56e001a173da96cce181ab0 | 32 - .../.history/2c/6074ddb38771001a1f70833eb9ed7011 | 29 + .../.history/2c/a0c4dce39a71001a1f70833eb9ed7011 | 15 + .../.history/2c/e013b3b48771001a1f70833eb9ed7011 | 38 + .../.history/2c/e0605de78f71001a1f70833eb9ed7011 | 26 + .../.history/2d/305cfea99071001a1f70833eb9ed7011 | 38 + .../.history/2d/80187c429b71001a1f70833eb9ed7011 | 32 + .../.history/2d/a0608dab9071001a1f70833eb9ed7011 | 15 + .../.history/2d/b01e96e39a71001a1f70833eb9ed7011 | 15 + .../.history/2d/b0cfc3e19a71001a1f70833eb9ed7011 | 43 + .../.history/2d/e17471509571001a1f70833eb9ed7011 | 26 + .../.history/2d/f047c96e8771001a1f70833eb9ed7011 | 44 + .../.history/2e/107193429b71001a1f70833eb9ed7011 | 32 + .../.history/2e/402f36e49a71001a1f70833eb9ed7011 | 22 + .../.history/2e/50417916b66e001a173da96cce181ab0 | 15 - .../.history/2e/50dec9e78f71001a1f70833eb9ed7011 | 26 + .../.history/2e/6038ec1ed66c001a1f3dc7d0d6cfdd9d | 15 - .../.history/2e/b04de1509571001a1f70833eb9ed7011 | 26 + .../.history/2e/b0a924429b71001a1f70833eb9ed7011 | 38 + .../.history/2e/e0b750419b71001a1f70833eb9ed7011 | 86 + .../.history/2e/f06ce08eb56e001a173da96cce181ab0 | 50 - .../.history/2f/203c4f429b71001a1f70833eb9ed7011 | 26 + .../.history/2f/3073109b8f71001a1f70833eb9ed7011 | 57 + .../.history/2f/5010e2ab9071001a1f70833eb9ed7011 | 22 + .../.history/2f/506d189c8f71001a1f70833eb9ed7011 | 56 + .../.history/2f/50fe67ab9071001a1f70833eb9ed7011 | 26 + .../.history/2f/607142cb9071001a1f70833eb9ed7011 | 146 + .../.history/2f/608682e58f71001a1f70833eb9ed7011 | 29 + .../.history/2f/8085cc388871001a1f70833eb9ed7011 | 50 + .../.history/2f/90f0e1cc9071001a1f70833eb9ed7011 | 26 + .../.history/2f/a09700b58771001a1f70833eb9ed7011 | 15 + .../.history/2f/b07f71e39a71001a1f70833eb9ed7011 | 15 + .../.history/2f/d061d6a99071001a1f70833eb9ed7011 | 58 + .../.history/2f/d0ea41419b71001a1f70833eb9ed7011 | 44 + .../.history/3/10c0f5509571001a1f70833eb9ed7011 | 26 + .../.history/3/2036d98db56e001a173da96cce181ab0 | 26 - .../.history/3/205a68b58771001a1f70833eb9ed7011 | 32 + .../.history/3/30e910519571001a1f70833eb9ed7011 | 44 + .../.history/3/5042a0429b71001a1f70833eb9ed7011 | 15 + .../.history/3/700749b48771001a1f70833eb9ed7011 | 162 + .../.history/3/70cc96429b71001a1f70833eb9ed7011 | 32 + .../.history/3/d12639509571001a1f70833eb9ed7011 | 29 + .../.history/3/d12f76509571001a1f70833eb9ed7011 | 15 + .../.history/30/207b228b9571001a1f70833eb9ed7011 | 22 + .../.history/30/30e5a416b66e001a173da96cce181ab0 | 86 - .../.history/30/401d1b8a9571001a1f70833eb9ed7011 | 38 + .../.history/30/608511e39a71001a1f70833eb9ed7011 | 38 + .../.history/30/b07f6fcc9071001a1f70833eb9ed7011 | 36 + .../.history/30/c04cab398871001a1f70833eb9ed7011 | 26 + .../.history/30/c0f634e49a71001a1f70833eb9ed7011 | 32 + .../.history/30/d07164429b71001a1f70833eb9ed7011 | 26 + .../.history/31/1020a6cc9071001a1f70833eb9ed7011 | 22 + .../.history/31/311c628b9571001a1f70833eb9ed7011 | 15 + .../.history/31/a03d74acb06e001a18bbdaa1f718f3a2 | 15 - .../.history/31/b009d8e39a71001a1f70833eb9ed7011 | 26 + .../.history/31/d0d51c8b9571001a1f70833eb9ed7011 | 26 + .../.history/31/f0ae2c6d8771001a1f70833eb9ed7011 | 29 + .../.history/32/0028758eb56e001a173da96cce181ab0 | 26 - .../.history/32/20a2c2509571001a1f70833eb9ed7011 | 32 + .../.history/32/4077e4429b71001a1f70833eb9ed7011 | 26 + .../.history/32/80b6ea18b66e001a173da96cce181ab0 | 188 - .../.history/32/9043163a8871001a1f70833eb9ed7011 | 26 + .../.history/32/a0a364509571001a1f70833eb9ed7011 | 26 + .../.history/32/b0f9b0e39a71001a1f70833eb9ed7011 | 26 + .../.history/32/c0402a3a8871001a1f70833eb9ed7011 | 44 + .../.history/33/10c9ca8b9571001a1f70833eb9ed7011 | 866 +++ .../.history/33/4096538eb56e001a173da96cce181ab0 | 15 - .../.history/33/803d28cc9071001a1f70833eb9ed7011 | 56 + .../.history/33/80f5dd398871001a1f70833eb9ed7011 | 32 + .../.history/33/90d909439b71001a1f70833eb9ed7011 | 50 + .../.history/33/b0415f429b71001a1f70833eb9ed7011 | 32 + .../.history/33/c02e569b8f71001a1f70833eb9ed7011 | 22 + .../.history/33/c0f4c5b38771001a1f70833eb9ed7011 | 32 + .../.history/33/d07ce8398871001a1f70833eb9ed7011 | 32 + .../.history/33/e01d7de78f71001a1f70833eb9ed7011 | 22 + .../.history/33/f0d9528b9571001a1f70833eb9ed7011 | 32 + .../.history/34/1051dea99071001a1f70833eb9ed7011 | 26 + .../.history/34/402545f3ef6c001a1f3dc7d0d6cfdd9d | 15 - .../.history/34/503ad78db56e001a173da96cce181ab0 | 15 - .../.history/34/804e128b9571001a1f70833eb9ed7011 | 15 + .../.history/34/90bc09ac9071001a1f70833eb9ed7011 | 15 + .../.history/34/a0cd4529c36e001a17dd93e105fd0cb6 | 107 - .../.history/34/b0c7a2acb06e001a18bbdaa1f718f3a2 | 15 - .../.history/34/d0cb55429b71001a1f70833eb9ed7011 | 26 + .../.history/34/d186bb8b9571001a1f70833eb9ed7011 | 29 + .../.history/35/00eed1acb06e001a18bbdaa1f718f3a2 | 32 - .../.history/35/217b228b9571001a1f70833eb9ed7011 | 26 + .../.history/35/3187dd9b8f71001a1f70833eb9ed7011 | 36 + .../.history/35/5063d3388871001a1f70833eb9ed7011 | 29 + .../.history/35/603350b48771001a1f70833eb9ed7011 | 50 + .../.history/35/707070b58771001a1f70833eb9ed7011 | 866 +++ .../.history/35/72e39b398871001a1f70833eb9ed7011 | 26 + .../.history/35/80b63e419b71001a1f70833eb9ed7011 | 29 + .../.history/35/90c03f9b8f71001a1f70833eb9ed7011 | 26 + .../.history/35/a08531e29a71001a1f70833eb9ed7011 | 410 ++ .../.history/36/403c62acb06e001a18bbdaa1f718f3a2 | 15 - .../.history/36/702bb88b9571001a1f70833eb9ed7011 | 50 + .../.history/36/810d0ab58771001a1f70833eb9ed7011 | 22 + .../.history/36/a055f959086d001a1f3dc7d0d6cfdd9d | 15 - .../.history/36/c05117e39a71001a1f70833eb9ed7011 | 15 + .../.history/36/e029c7aab06e001a18bbdaa1f718f3a2 | 62 - .../.history/36/f00b4be39a71001a1f70833eb9ed7011 | 26 + .../.history/36/f02c448eb56e001a173da96cce181ab0 | 26 - .../.history/37/002f5facb06e001a18bbdaa1f718f3a2 | 29 - .../.history/37/01244d509571001a1f70833eb9ed7011 | 29 + .../.history/37/0137d5b38771001a1f70833eb9ed7011 | 15 + .../.history/37/21a2c2509571001a1f70833eb9ed7011 | 22 + .../.history/37/51cb3d8b9571001a1f70833eb9ed7011 | 22 + .../.history/37/a1755fb48771001a1f70833eb9ed7011 | 183 + .../.history/37/c061054f9571001a1f70833eb9ed7011 | 29 + .../.history/37/e0e7d78bb56e001a173da96cce181ab0 | 58 - .../.history/37/f05dd318b66e001a173da96cce181ab0 | 50 - .../.history/38/0032cc18b66e001a173da96cce181ab0 | 44 - .../.history/38/00d2efe68f71001a1f70833eb9ed7011 | 15 + .../.history/38/1006d3e78f71001a1f70833eb9ed7011 | 22 + .../.history/38/2042e1aa9071001a1f70833eb9ed7011 | 183 + .../.history/38/60de708a9571001a1f70833eb9ed7011 | 62 + .../.history/38/7003bfe39a71001a1f70833eb9ed7011 | 26 + .../.history/38/706cac419b71001a1f70833eb9ed7011 | 152 + .../.history/38/70c363ac9071001a1f70833eb9ed7011 | 50 + .../.history/38/b082858b9571001a1f70833eb9ed7011 | 26 + .../.history/38/f0b5d09b8f71001a1f70833eb9ed7011 | 26 + .../.history/39/10fe47ac9071001a1f70833eb9ed7011 | 44 + .../.history/39/50ad439a8f71001a1f70833eb9ed7011 | 410 ++ .../.history/39/50d298ab9071001a1f70833eb9ed7011 | 15 + .../.history/39/607bb49b8f71001a1f70833eb9ed7011 | 15 + .../.history/39/6081393a066d001a1f3dc7d0d6cfdd9d | 15 - .../.history/39/60914c8eb56e001a173da96cce181ab0 | 26 - .../.history/39/702447aab06e001a18bbdaa1f718f3a2 | 85 - .../.history/39/70281618b66e001a173da96cce181ab0 | 26 - .../.history/39/804c26419b71001a1f70833eb9ed7011 | 22 + .../.history/39/b010f9429b71001a1f70833eb9ed7011 | 204 + .../.history/39/c09cd2e19a71001a1f70833eb9ed7011 | 38 + .../.history/3a/00599316b66e001a173da96cce181ab0 | 44 - .../.history/3a/301048429b71001a1f70833eb9ed7011 | 26 + .../.history/3a/30e09be29a71001a1f70833eb9ed7011 | 43 + .../.history/3a/7004db388871001a1f70833eb9ed7011 | 36 + .../.history/3a/70accbacb06e001a18bbdaa1f718f3a2 | 22 - .../.history/3a/a0d2819b8f71001a1f70833eb9ed7011 | 22 + .../.history/3a/b005c7f9076d001a1f3dc7d0d6cfdd9d | 15 - .../.history/3a/b0660de39a71001a1f70833eb9ed7011 | 38 + .../.history/3a/b078b2398871001a1f70833eb9ed7011 | 26 + .../.history/3a/c038de388871001a1f70833eb9ed7011 | 62 + .../.history/3b/20471a18b66e001a173da96cce181ab0 | 15 - .../.history/3b/406fb6b48771001a1f70833eb9ed7011 | 15 + .../.history/3b/6081dd16b66e001a173da96cce181ab0 | 463 -- .../.history/3b/60bf1121f56c001a1f3dc7d0d6cfdd9d | 26 - .../.history/3b/c02a99acb06e001a18bbdaa1f718f3a2 | 15 - .../.history/3b/c08316439b71001a1f70833eb9ed7011 | 22 + .../.history/3b/c0b696cc9071001a1f70833eb9ed7011 | 32 + .../.history/3b/d04336398871001a1f70833eb9ed7011 | 50 + .../.history/3c/20ce9aab9071001a1f70833eb9ed7011 | 26 + .../.history/3c/50f37918b66e001a173da96cce181ab0 | 32 - .../.history/3c/60fb7a8b9571001a1f70833eb9ed7011 | 26 + .../.history/3c/90269bacb06e001a18bbdaa1f718f3a2 | 26 - .../.history/3c/a0617f9b8f71001a1f70833eb9ed7011 | 32 + .../.history/3c/c03fdeab9071001a1f70833eb9ed7011 | 22 + .../.history/3c/d047afcc9071001a1f70833eb9ed7011 | 22 + .../.history/3c/d0b535419b71001a1f70833eb9ed7011 | 26 + .../.history/3c/d0dcb6e58f71001a1f70833eb9ed7011 | 86 + .../.history/3c/e037d2e68f71001a1f70833eb9ed7011 | 62 + .../.history/3d/1014a7e78f71001a1f70833eb9ed7011 | 15 + .../.history/3d/1064f9e58f71001a1f70833eb9ed7011 | 410 ++ .../.history/3d/10e16e16b66e001a173da96cce181ab0 | 36 - .../.history/3d/208d04519571001a1f70833eb9ed7011 | 26 + .../.history/3d/608ae9ab9071001a1f70833eb9ed7011 | 32 + .../.history/3d/b0262b8eb56e001a173da96cce181ab0 | 26 - .../.history/3d/c0b3d4e78f71001a1f70833eb9ed7011 | 26 + .../.history/3d/c1567e8b9571001a1f70833eb9ed7011 | 26 + .../.history/3d/d1641a8b9571001a1f70833eb9ed7011 | 15 + .../.history/3d/e14a12b58771001a1f70833eb9ed7011 | 26 + .../.history/3e/006ec218b66e001a173da96cce181ab0 | 36 - .../.history/3e/302415439b71001a1f70833eb9ed7011 | 32 + .../.history/3e/409dbb509571001a1f70833eb9ed7011 | 15 + .../.history/3e/4154463a8871001a1f70833eb9ed7011 | 50 + .../.history/3e/5041b7200b6d001a1f3dc7d0d6cfdd9d | 26 - .../.history/3e/6054724f9571001a1f70833eb9ed7011 | 62 + .../.history/3e/7053cb8db56e001a173da96cce181ab0 | 50 - .../.history/3e/801f2dcc9071001a1f70833eb9ed7011 | 15 + .../.history/3e/806c0d8b9571001a1f70833eb9ed7011 | 26 + .../.history/3e/a03170429b71001a1f70833eb9ed7011 | 26 + .../.history/3e/a03cf4398871001a1f70833eb9ed7011 | 15 + .../.history/3e/a0665c6c8771001a1f70833eb9ed7011 | 410 ++ .../.history/3e/a0f61dc40a6d001a1f3dc7d0d6cfdd9d | 26 - .../.history/3e/d0d6e5429b71001a1f70833eb9ed7011 | 15 + .../.history/3e/e026c7ca9071001a1f70833eb9ed7011 | 86 + .../.history/3e/e0faeae78f71001a1f70833eb9ed7011 | 36 + .../.history/3f/100bceb38771001a1f70833eb9ed7011 | 38 + .../.history/3f/104be58a9571001a1f70833eb9ed7011 | 62 + .../.history/3f/50674109f56c001a1f3dc7d0d6cfdd9d | 26 - .../.history/3f/818eae8b9571001a1f70833eb9ed7011 | 204 + .../.history/3f/a0c3fae58f71001a1f70833eb9ed7011 | 463 ++ .../.history/3f/c0878616b66e001a173da96cce181ab0 | 26 - .../.history/3f/d0c7ac2bdc6c001a1f3dc7d0d6cfdd9d | 26 - .../.history/3f/e080b8ca9071001a1f70833eb9ed7011 | 57 + .../.history/3f/f0050c8eb56e001a173da96cce181ab0 | 22 - .../.history/3f/f02c44acb06e001a18bbdaa1f718f3a2 | 632 --- .../.history/3f/f062f8e39a71001a1f70833eb9ed7011 | 43 + .../.history/3f/f1598c9b8f71001a1f70833eb9ed7011 | 22 + .../.history/4/00591fcb9071001a1f70833eb9ed7011 | 106 + .../.history/4/10149918b66e001a173da96cce181ab0 | 26 - .../.history/4/109425429b71001a1f70833eb9ed7011 | 29 + .../.history/4/2068b89a8f71001a1f70833eb9ed7011 | 183 + .../.history/4/209fe300d66c001a1f3dc7d0d6cfdd9d | 26 - .../.history/4/40b3da429b71001a1f70833eb9ed7011 | 44 + .../.history/4/705941429b71001a1f70833eb9ed7011 | 26 + .../.history/4/800d0ab58771001a1f70833eb9ed7011 | 32 + .../.history/4/b03142ac9071001a1f70833eb9ed7011 | 26 + .../.history/4/b0c4a4e39a71001a1f70833eb9ed7011 | 32 + .../.history/4/b1fb2e3a8871001a1f70833eb9ed7011 | 50 + .../.history/4/d0267316b66e001a173da96cce181ab0 | 22 - .../.history/4/f09784e78f71001a1f70833eb9ed7011 | 22 + .../.history/40/00ed26e49a71001a1f70833eb9ed7011 | 56 + .../.history/40/306b2a419b71001a1f70833eb9ed7011 | 26 + .../.history/40/403c306e8771001a1f70833eb9ed7011 | 15 + .../.history/40/601446429b71001a1f70833eb9ed7011 | 29 + .../.history/40/609ae66b8771001a1f70833eb9ed7011 | 32 + .../.history/40/b02b40509571001a1f70833eb9ed7011 | 29 + .../.history/40/c1402a3a8871001a1f70833eb9ed7011 | 36 + .../.history/41/008a78e78f71001a1f70833eb9ed7011 | 32 + .../.history/41/30f213cc9071001a1f70833eb9ed7011 | 15 + .../.history/41/60119baa9071001a1f70833eb9ed7011 | 155 + .../.history/41/80580c3a8871001a1f70833eb9ed7011 | 26 + .../.history/41/80a21d18b66e001a173da96cce181ab0 | 38 - .../.history/41/80e5c2429b71001a1f70833eb9ed7011 | 15 + .../.history/41/b017ace39a71001a1f70833eb9ed7011 | 15 + .../.history/41/b0f66d16b66e001a173da96cce181ab0 | 58 - .../.history/41/c0f4e1e39a71001a1f70833eb9ed7011 | 32 + .../.history/41/c1f4c5b38771001a1f70833eb9ed7011 | 22 + .../.history/41/d034b818b66e001a173da96cce181ab0 | 26 - .../.history/42/201ed7acb06e001a18bbdaa1f718f3a2 | 32 - .../.history/42/20f935cc9071001a1f70833eb9ed7011 | 15 + .../.history/42/3012a5ac9071001a1f70833eb9ed7011 | 29 + .../.history/42/30b8a9429b71001a1f70833eb9ed7011 | 26 + .../.history/42/70ee80e78f71001a1f70833eb9ed7011 | 22 + .../.history/42/8084c76c8771001a1f70833eb9ed7011 | 170 + .../.history/42/a0f6a516b66e001a173da96cce181ab0 | 85 - .../.history/42/b00e409b8f71001a1f70833eb9ed7011 | 15 + .../.history/42/b0e3bb388871001a1f70833eb9ed7011 | 58 + .../.history/42/c0b1186d8771001a1f70833eb9ed7011 | 38 + .../.history/42/c14cab398871001a1f70833eb9ed7011 | 15 + .../.history/43/10dbfc6e8771001a1f70833eb9ed7011 | 22 + .../.history/43/10e387509571001a1f70833eb9ed7011 | 26 + .../.history/43/6076dbe19a71001a1f70833eb9ed7011 | 36 + .../.history/43/609f64cb9071001a1f70833eb9ed7011 | 57 + .../.history/43/60ae6d9b8f71001a1f70833eb9ed7011 | 32 + .../.history/43/704ecfb48771001a1f70833eb9ed7011 | 15 + .../.history/43/709b79e78f71001a1f70833eb9ed7011 | 22 + .../.history/43/7129cd509571001a1f70833eb9ed7011 | 15 + .../.history/43/807dc4cc9071001a1f70833eb9ed7011 | 15 + .../.history/43/90436be78f71001a1f70833eb9ed7011 | 15 + .../.history/43/90dce6a99071001a1f70833eb9ed7011 | 38 + .../.history/43/90de23adb06e001a18bbdaa1f718f3a2 | 32 - .../.history/43/a0e9208a9571001a1f70833eb9ed7011 | 50 + .../.history/43/b01c0a4f9571001a1f70833eb9ed7011 | 29 + .../.history/43/b0dfdbe78f71001a1f70833eb9ed7011 | 36 + .../.history/43/d10517b58771001a1f70833eb9ed7011 | 26 + .../.history/44/10d40ae78f71001a1f70833eb9ed7011 | 15 + .../.history/44/20bb2fac9071001a1f70833eb9ed7011 | 22 + .../.history/44/31e910519571001a1f70833eb9ed7011 | 36 + .../.history/44/501b68429b71001a1f70833eb9ed7011 | 15 + .../.history/44/50ee36419b71001a1f70833eb9ed7011 | 15 + .../.history/44/70208f419b71001a1f70833eb9ed7011 | 57 + .../.history/44/70b508adb06e001a18bbdaa1f718f3a2 | 15 - .../.history/44/70cce76e8771001a1f70833eb9ed7011 | 204 + .../.history/44/80baeeab9071001a1f70833eb9ed7011 | 15 + .../.history/44/904c533a8871001a1f70833eb9ed7011 | 22 + .../.history/44/90f54b9b8f71001a1f70833eb9ed7011 | 15 + .../.history/44/a05c15cd9071001a1f70833eb9ed7011 | 56 + .../.history/44/a09d759b8f71001a1f70833eb9ed7011 | 15 + .../.history/44/e085939b8f71001a1f70833eb9ed7011 | 26 + .../.history/45/0068a08cb56e001a173da96cce181ab0 | 106 - .../.history/45/105958cd9071001a1f70833eb9ed7011 | 29 + .../.history/45/806888e78f71001a1f70833eb9ed7011 | 22 + .../.history/45/80daf9cb9071001a1f70833eb9ed7011 | 722 +++ .../.history/45/9133238a9571001a1f70833eb9ed7011 | 15 + .../.history/46/00db1e18b66e001a173da96cce181ab0 | 29 - .../.history/46/201517429b71001a1f70833eb9ed7011 | 632 +++ .../.history/46/4142cc398871001a1f70833eb9ed7011 | 32 + .../.history/46/509c58cc9071001a1f70833eb9ed7011 | 32 + .../.history/46/602e1e8eb56e001a173da96cce181ab0 | 32 - .../.history/46/8013d9398871001a1f70833eb9ed7011 | 22 + .../.history/46/80d0cde39a71001a1f70833eb9ed7011 | 26 + .../.history/46/9090816e8771001a1f70833eb9ed7011 | 32 + .../.history/46/a09467e39a71001a1f70833eb9ed7011 | 26 + .../.history/46/d0b438398871001a1f70833eb9ed7011 | 43 + .../.history/46/f0a0129c8f71001a1f70833eb9ed7011 | 188 + .../.history/47/31e3219c8f71001a1f70833eb9ed7011 | 29 + .../.history/47/5066bd998f71001a1f70833eb9ed7011 | 36 + .../.history/47/7052a86e8771001a1f70833eb9ed7011 | 26 + .../.history/47/908d2718b66e001a173da96cce181ab0 | 56 - .../.history/47/90cdd1e78f71001a1f70833eb9ed7011 | 32 + .../.history/47/a0a7e96b8771001a1f70833eb9ed7011 | 22 + .../.history/48/004a5acc9071001a1f70833eb9ed7011 | 22 + .../.history/48/30561fc40a6d001a1f3dc7d0d6cfdd9d | 15 - .../.history/48/50e9a9ab9071001a1f70833eb9ed7011 | 15 + .../.history/48/60ae9ce39a71001a1f70833eb9ed7011 | 32 + .../.history/48/71518e8a9571001a1f70833eb9ed7011 | 162 + .../.history/48/9048b9429b71001a1f70833eb9ed7011 | 32 + .../.history/48/905205b58771001a1f70833eb9ed7011 | 22 + .../.history/48/c138de388871001a1f70833eb9ed7011 | 57 + .../.history/48/d05117519571001a1f70833eb9ed7011 | 50 + .../.history/48/d098ed6e8771001a1f70833eb9ed7011 | 56 + .../.history/48/d0c4059b8f71001a1f70833eb9ed7011 | 632 +++ .../.history/48/f040d7e68f71001a1f70833eb9ed7011 | 29 + .../.history/49/107285509571001a1f70833eb9ed7011 | 15 + .../.history/49/40a84a429b71001a1f70833eb9ed7011 | 15 + .../.history/49/40ecd5e78f71001a1f70833eb9ed7011 | 15 + .../.history/49/5057af6e8771001a1f70833eb9ed7011 | 26 + .../.history/49/50e0e58db56e001a173da96cce181ab0 | 26 - .../.history/49/a03f45519571001a1f70833eb9ed7011 | 56 + .../.history/49/a0dc278cb56e001a173da96cce181ab0 | 57 - .../.history/49/b0c720519571001a1f70833eb9ed7011 | 36 + .../.history/49/e0661f8eb56e001a173da96cce181ab0 | 22 - .../.history/49/f06285ca9071001a1f70833eb9ed7011 | 22 + .../.history/4a/112a2bb58771001a1f70833eb9ed7011 | 26 + .../.history/4a/401a48ab9071001a1f70833eb9ed7011 | 722 +++ .../.history/4a/802e2c509571001a1f70833eb9ed7011 | 722 +++ .../.history/4a/90ca246e8771001a1f70833eb9ed7011 | 26 + .../.history/4a/90cac7388871001a1f70833eb9ed7011 | 38 + .../.history/4a/c01f4fe29a71001a1f70833eb9ed7011 | 106 + .../.history/4a/d0d5068eb56e001a173da96cce181ab0 | 26 - .../.history/4a/e0d1dfe39a71001a1f70833eb9ed7011 | 15 + .../.history/4b/208d21b58771001a1f70833eb9ed7011 | 57 + .../.history/4b/30d10d439b71001a1f70833eb9ed7011 | 50 + .../.history/4b/4052f3398871001a1f70833eb9ed7011 | 26 + .../.history/4b/50cb3d8b9571001a1f70833eb9ed7011 | 32 + .../.history/4b/6009c88bb56e001a173da96cce181ab0 | 207 - .../.history/4b/70e57dadb06e001a18bbdaa1f718f3a2 | 204 - .../.history/4b/e09694acb06e001a18bbdaa1f718f3a2 | 26 - .../.history/4c/2005028cb56e001a173da96cce181ab0 | 26 - .../.history/4c/2048c4388871001a1f70833eb9ed7011 | 15 + .../.history/4c/20cd66cc9071001a1f70833eb9ed7011 | 26 + .../.history/4c/3060d4e39a71001a1f70833eb9ed7011 | 32 + .../.history/4c/309d04aab06e001a18bbdaa1f718f3a2 | 26 - .../.history/4c/80d2afe19a71001a1f70833eb9ed7011 | 26 + .../.history/4c/908ba3ac9071001a1f70833eb9ed7011 | 38 + .../.history/4c/90b20c18b66e001a173da96cce181ab0 | 38 - .../.history/4c/910d4d8b9571001a1f70833eb9ed7011 | 22 + .../.history/4c/9116e5388871001a1f70833eb9ed7011 | 85 + .../.history/4c/c0d88359cf6e001a1c4ce2378ee7c6e4 | 485 -- .../.history/4d/10de72acb06e001a18bbdaa1f718f3a2 | 26 - .../.history/4d/11926b8b9571001a1f70833eb9ed7011 | 26 + .../.history/4d/200a91ab9071001a1f70833eb9ed7011 | 15 + .../.history/4d/4046b918b66e001a173da96cce181ab0 | 15 - .../.history/4d/8022c8b48771001a1f70833eb9ed7011 | 15 + .../.history/4d/80f6ce388871001a1f70833eb9ed7011 | 26 + .../.history/4d/a012968db56e001a173da96cce181ab0 | 62 - .../.history/4d/c0348de58f71001a1f70833eb9ed7011 | 15 + .../.history/4d/c0fa238eb56e001a173da96cce181ab0 | 22 - .../.history/4e/00a69ecc9071001a1f70833eb9ed7011 | 32 + .../.history/4e/218d21b58771001a1f70833eb9ed7011 | 26 + .../.history/4e/5030a98eb56e001a173da96cce181ab0 | 56 - .../.history/4e/a00a38429b71001a1f70833eb9ed7011 | 29 + .../.history/4e/e0d0b5509571001a1f70833eb9ed7011 | 32 + .../.history/4e/e15fb3509571001a1f70833eb9ed7011 | 22 + .../.history/4e/f1d2edb48771001a1f70833eb9ed7011 | 22 + .../.history/4f/60c13e429b71001a1f70833eb9ed7011 | 56 + .../.history/4f/80f3309b8f71001a1f70833eb9ed7011 | 50 + .../.history/4f/c0567e8b9571001a1f70833eb9ed7011 | 15 + .../.history/4f/c07297ab9071001a1f70833eb9ed7011 | 26 + .../.history/4f/d11ad5b48771001a1f70833eb9ed7011 | 22 + .../.history/4f/f0a4308eb56e001a173da96cce181ab0 | 22 - .../.history/4f/f0f0d4ab9071001a1f70833eb9ed7011 | 15 + .../.history/4f/f192cd998f71001a1f70833eb9ed7011 | 29 + .../.history/5/0198f7398871001a1f70833eb9ed7011 | 15 + .../.history/5/10cb4de39a71001a1f70833eb9ed7011 | 26 + .../.history/5/10f030cc9071001a1f70833eb9ed7011 | 38 + .../.history/5/607442abb06e001a18bbdaa1f718f3a2 | 43 - .../.history/5/607ac2ab9071001a1f70833eb9ed7011 | 44 + .../.history/5/c0e68de78f71001a1f70833eb9ed7011 | 32 + .../.history/5/d0e402e78f71001a1f70833eb9ed7011 | 29 + .../.history/5/d11b0d3a8871001a1f70833eb9ed7011 | 32 + .../.history/5/e0d6ad429b71001a1f70833eb9ed7011 | 15 + .../.history/50/20a153adb06e001a18bbdaa1f718f3a2 | 36 - .../.history/50/309f966e8771001a1f70833eb9ed7011 | 15 + .../.history/50/402e0c519571001a1f70833eb9ed7011 | 36 + .../.history/50/6048b7ca9071001a1f70833eb9ed7011 | 62 + .../.history/50/704fdacc9071001a1f70833eb9ed7011 | 32 + .../.history/50/70ffd28eb56e001a173da96cce181ab0 | 188 - .../.history/50/804d21aa9071001a1f70833eb9ed7011 | 85 + .../.history/50/e038138b9571001a1f70833eb9ed7011 | 26 + .../.history/51/10926b8b9571001a1f70833eb9ed7011 | 15 + .../.history/51/20fe566e8771001a1f70833eb9ed7011 | 26 + .../.history/51/50c8f9a99071001a1f70833eb9ed7011 | 29 + .../.history/51/8193cab48771001a1f70833eb9ed7011 | 26 + .../.history/51/d0aa99adb06e001a18bbdaa1f718f3a2 | 22 - .../.history/52/00a8d7b38771001a1f70833eb9ed7011 | 38 + .../.history/52/1056e6ab9071001a1f70833eb9ed7011 | 22 + .../.history/52/707a038eb56e001a173da96cce181ab0 | 44 - .../.history/52/709acf509571001a1f70833eb9ed7011 | 26 + .../.history/52/a024108eb56e001a173da96cce181ab0 | 22 - .../.history/52/a0aa57ab9071001a1f70833eb9ed7011 | 38 + .../.history/53/103f14e68f71001a1f70833eb9ed7011 | 57 + .../.history/53/405ed16e8771001a1f70833eb9ed7011 | 50 + .../.history/53/516d189c8f71001a1f70833eb9ed7011 | 50 + .../.history/53/708133e29a71001a1f70833eb9ed7011 | 463 ++ .../.history/53/8054f58eb56e001a173da96cce181ab0 | 22 - .../.history/53/80b54d429b71001a1f70833eb9ed7011 | 15 + .../.history/53/913d47b58771001a1f70833eb9ed7011 | 26 + .../.history/53/a0de31e39a71001a1f70833eb9ed7011 | 26 + .../.history/53/d0a6f3acb06e001a18bbdaa1f718f3a2 | 22 - .../.history/53/e004c4398871001a1f70833eb9ed7011 | 15 + .../.history/54/001e0de78f71001a1f70833eb9ed7011 | 26 + .../.history/54/30a7dae78f71001a1f70833eb9ed7011 | 44 + .../.history/54/40add5388871001a1f70833eb9ed7011 | 38 + .../.history/54/40e0b8b48771001a1f70833eb9ed7011 | 56 + .../.history/54/40e38a18b66e001a173da96cce181ab0 | 22 - .../.history/54/41cbfab48771001a1f70833eb9ed7011 | 22 + .../.history/54/50131058f46c001a1f3dc7d0d6cfdd9d | 15 - .../.history/54/f0b2048eb56e001a173da96cce181ab0 | 36 - .../.history/55/004d80e0d56c001a1f3dc7d0d6cfdd9d | 0 .../.history/55/30b0a6e58f71001a1f70833eb9ed7011 | 62 + .../.history/55/40d75e509571001a1f70833eb9ed7011 | 38 + .../.history/55/5110296e8771001a1f70833eb9ed7011 | 15 + .../.history/55/70987c509571001a1f70833eb9ed7011 | 22 + .../.history/55/70e09e18b66e001a173da96cce181ab0 | 26 - .../.history/55/a05107e78f71001a1f70833eb9ed7011 | 15 + .../.history/55/a0deb96e8771001a1f70833eb9ed7011 | 44 + .../.history/55/b138026c8771001a1f70833eb9ed7011 | 15 + .../.history/55/e1d90fb58771001a1f70833eb9ed7011 | 26 + .../.history/56/00bca4b48771001a1f70833eb9ed7011 | 29 + .../.history/56/00fbcb9b8f71001a1f70833eb9ed7011 | 15 + .../.history/56/01e8ee8a9571001a1f70833eb9ed7011 | 29 + .../.history/56/102a2bb58771001a1f70833eb9ed7011 | 15 + .../.history/56/3044bbe19a71001a1f70833eb9ed7011 | 29 + .../.history/56/40b9fb8a9571001a1f70833eb9ed7011 | 15 + .../.history/56/419b008b9571001a1f70833eb9ed7011 | 15 + .../.history/56/60c2b28db56e001a173da96cce181ab0 | 26 - .../.history/56/b0a59cb48771001a1f70833eb9ed7011 | 62 + .../.history/56/d03bb21e066d001a1f3dc7d0d6cfdd9d | 15 - .../.history/57/4028be18b66e001a173da96cce181ab0 | 36 - .../.history/57/40399b429b71001a1f70833eb9ed7011 | 22 + .../.history/57/606ddfaa9071001a1f70833eb9ed7011 | 170 + .../.history/57/70ddccb48771001a1f70833eb9ed7011 | 15 + .../.history/57/80e84fe68f71001a1f70833eb9ed7011 | 62 + .../.history/57/b0c73db58771001a1f70833eb9ed7011 | 43 + .../.history/57/d012dc429b71001a1f70833eb9ed7011 | 36 + .../.history/57/d0ae20d60d6d001a1f3dc7d0d6cfdd9d | 15 - .../.history/57/e0ffd29b8f71001a1f70833eb9ed7011 | 15 + .../.history/58/307376429b71001a1f70833eb9ed7011 | 32 + .../.history/58/702103abb06e001a18bbdaa1f718f3a2 | 152 - .../.history/58/b05748e49a71001a1f70833eb9ed7011 | 866 +++ .../.history/59/201c1fb58771001a1f70833eb9ed7011 | 62 + .../.history/59/2094f7ab9071001a1f70833eb9ed7011 | 22 + .../.history/59/30ec0de88f71001a1f70833eb9ed7011 | 50 + .../.history/59/40755ae39a71001a1f70833eb9ed7011 | 15 + .../.history/59/90c307b58771001a1f70833eb9ed7011 | 32 + .../.history/59/e0a7ac8db56e001a173da96cce181ab0 | 26 - .../.history/59/f07ba58db56e001a173da96cce181ab0 | 38 - .../.history/59/f084a8e58f71001a1f70833eb9ed7011 | 57 + .../.history/59/f0e963acb06e001a18bbdaa1f718f3a2 | 26 - .../.history/5a/1076ad8eb56e001a173da96cce181ab0 | 50 - .../.history/5a/1098659b8f71001a1f70833eb9ed7011 | 44 + .../.history/5a/10bc08e88f71001a1f70833eb9ed7011 | 204 + .../.history/5a/20b38518b66e001a173da96cce181ab0 | 32 - .../.history/5a/40364b3a8871001a1f70833eb9ed7011 | 50 + .../.history/5a/405e03adb06e001a18bbdaa1f718f3a2 | 26 - .../.history/5a/60823f18b66e001a173da96cce181ab0 | 15 - .../.history/5a/80a5a9acb06e001a18bbdaa1f718f3a2 | 15 - .../.history/5a/b019fdcc9071001a1f70833eb9ed7011 | 44 + .../.history/5a/b0ce13ac9071001a1f70833eb9ed7011 | 15 + .../.history/5a/c04ae78eb56e001a173da96cce181ab0 | 50 - .../.history/5a/d0087816b66e001a173da96cce181ab0 | 26 - .../.history/5a/e09f15cc9071001a1f70833eb9ed7011 | 26 + .../.history/5b/00c0afacb06e001a18bbdaa1f718f3a2 | 15 - .../.history/5b/100091429b71001a1f70833eb9ed7011 | 22 + .../.history/5b/10d830e49a71001a1f70833eb9ed7011 | 38 + .../.history/5b/10e0dba99071001a1f70833eb9ed7011 | 22 + .../.history/5b/312abbb48771001a1f70833eb9ed7011 | 26 + .../.history/5b/603eccab9071001a1f70833eb9ed7011 | 22 + .../.history/5b/61fb7a8b9571001a1f70833eb9ed7011 | 15 + .../.history/5b/b0152a9b8f71001a1f70833eb9ed7011 | 15 + .../.history/5b/d0279a429b71001a1f70833eb9ed7011 | 32 + .../.history/5b/f0a4ae509571001a1f70833eb9ed7011 | 32 + .../.history/5c/1002744f9571001a1f70833eb9ed7011 | 57 + .../.history/5c/30610e8cb56e001a173da96cce181ab0 | 29 - .../.history/5c/80dfca509571001a1f70833eb9ed7011 | 32 + .../.history/5c/a0c971cc9071001a1f70833eb9ed7011 | 26 + .../.history/5c/a0e6a929c36e001a17dd93e105fd0cb6 | 140 - .../.history/5d/00db0b8a9571001a1f70833eb9ed7011 | 211 + .../.history/5d/00f4276d8771001a1f70833eb9ed7011 | 26 + .../.history/5d/206b29cb9071001a1f70833eb9ed7011 | 62 + .../.history/5d/20d6ee8cb56e001a173da96cce181ab0 | 62 - .../.history/5d/30eb62429b71001a1f70833eb9ed7011 | 15 + .../.history/5d/606ff1e19a71001a1f70833eb9ed7011 | 85 + .../.history/5d/607f50509571001a1f70833eb9ed7011 | 15 + .../.history/5d/80444c519571001a1f70833eb9ed7011 | 43 + .../.history/5d/d09f7a398871001a1f70833eb9ed7011 | 632 +++ .../.history/5d/f043558eb56e001a173da96cce181ab0 | 26 - .../.history/5e/2088efacb06e001a18bbdaa1f718f3a2 | 22 - .../.history/5e/309c3c18b66e001a173da96cce181ab0 | 15 - .../.history/5e/400f1f439b71001a1f70833eb9ed7011 | 866 +++ .../.history/5e/4092c4998f71001a1f70833eb9ed7011 | 26 + .../.history/5e/508c6a429b71001a1f70833eb9ed7011 | 15 + .../.history/5e/50fef68a9571001a1f70833eb9ed7011 | 15 + .../.history/5e/807e3f6e8771001a1f70833eb9ed7011 | 15 + .../.history/5e/a027226d8771001a1f70833eb9ed7011 | 26 + .../.history/5e/b03c0318b66e001a173da96cce181ab0 | 62 - .../.history/5e/b05281ab9071001a1f70833eb9ed7011 | 15 + .../.history/5e/d27619b58771001a1f70833eb9ed7011 | 15 + .../.history/5e/f09791ca9071001a1f70833eb9ed7011 | 29 + .../.history/5e/f0e7abb48771001a1f70833eb9ed7011 | 15 + .../.history/5f/0019dab38771001a1f70833eb9ed7011 | 29 + .../.history/5f/0098f7398871001a1f70833eb9ed7011 | 26 + .../.history/5f/00f490e78f71001a1f70833eb9ed7011 | 32 + .../.history/5f/11e387509571001a1f70833eb9ed7011 | 15 + .../.history/5f/20fa19e88f71001a1f70833eb9ed7011 | 32 + .../.history/5f/314302519571001a1f70833eb9ed7011 | 22 + .../.history/5f/5077ac429b71001a1f70833eb9ed7011 | 26 + .../.history/5f/61de708a9571001a1f70833eb9ed7011 | 57 + .../.history/5f/708c949a8f71001a1f70833eb9ed7011 | 162 + .../.history/5f/8082e56e8771001a1f70833eb9ed7011 | 188 + .../.history/5f/80a740cc9071001a1f70833eb9ed7011 | 26 + .../.history/5f/9073efe19a71001a1f70833eb9ed7011 | 86 + .../.history/5f/c0300f439b71001a1f70833eb9ed7011 | 43 + .../.history/5f/c058d1a99071001a1f70833eb9ed7011 | 211 + .../.history/5f/c0bd3cadb06e001a18bbdaa1f718f3a2 | 36 - .../.history/5f/e0bf9c429b71001a1f70833eb9ed7011 | 26 + .../.history/5f/f04741e39a71001a1f70833eb9ed7011 | 26 + .../.history/6/20a6c5f9076d001a1f3dc7d0d6cfdd9d | 26 - .../.history/6/215a68b58771001a1f70833eb9ed7011 | 22 + .../.history/6/4000f3ab9071001a1f70833eb9ed7011 | 22 + .../.history/6/50ee7116b66e001a173da96cce181ab0 | 32 - .../.history/6/605cc7ab9071001a1f70833eb9ed7011 | 15 + .../.history/6/b09d6ce39a71001a1f70833eb9ed7011 | 44 + .../.history/6/c039a2ca9071001a1f70833eb9ed7011 | 29 + .../.history/6/e114919b8f71001a1f70833eb9ed7011 | 22 + .../.history/6/f0247faa9071001a1f70833eb9ed7011 | 57 + .../.history/6/f0b750cd9071001a1f70833eb9ed7011 | 43 + .../.history/60/005608398871001a1f70833eb9ed7011 | 463 ++ .../.history/60/603d98cc9071001a1f70833eb9ed7011 | 22 + .../.history/60/619310398871001a1f70833eb9ed7011 | 106 + .../.history/60/9067c3b48771001a1f70833eb9ed7011 | 26 + .../.history/60/a02fb79a8f71001a1f70833eb9ed7011 | 170 + .../.history/60/c06d08aab06e001a18bbdaa1f718f3a2 | 26 - .../.history/60/e009eaacb06e001a18bbdaa1f718f3a2 | 26 - .../.history/61/0039c4e78f71001a1f70833eb9ed7011 | 22 + .../.history/61/008caa8a9571001a1f70833eb9ed7011 | 183 + .../.history/61/00ffe98db56e001a173da96cce181ab0 | 15 - .../.history/61/10d26e429b71001a1f70833eb9ed7011 | 36 + .../.history/61/21d7668b9571001a1f70833eb9ed7011 | 26 + .../.history/61/31363cb48771001a1f70833eb9ed7011 | 155 + .../.history/61/4098a6acb06e001a18bbdaa1f718f3a2 | 22 - .../.history/61/508a9a8eb56e001a173da96cce181ab0 | 43 - .../.history/61/6009398eb56e001a173da96cce181ab0 | 32 - .../.history/61/a02d13e68f71001a1f70833eb9ed7011 | 62 + .../.history/61/b025b7429b71001a1f70833eb9ed7011 | 15 + .../.history/61/b0b7929a8f71001a1f70833eb9ed7011 | 152 + .../.history/61/e07ee1b8f36c001a1f3dc7d0d6cfdd9d | 15 - .../.history/61/e0d81f38f56c001a1f3dc7d0d6cfdd9d | 26 - .../.history/62/10edd2b38771001a1f70833eb9ed7011 | 50 + .../.history/62/114826b58771001a1f70833eb9ed7011 | 26 + .../.history/62/40ad648eb56e001a173da96cce181ab0 | 26 - .../.history/62/70dafa4e9571001a1f70833eb9ed7011 | 50 + .../.history/62/70deaa9b8f71001a1f70833eb9ed7011 | 26 + .../.history/62/710bd2509571001a1f70833eb9ed7011 | 26 + .../.history/62/807409e78f71001a1f70833eb9ed7011 | 26 + .../.history/62/a143849b8f71001a1f70833eb9ed7011 | 22 + .../.history/62/b026418b9571001a1f70833eb9ed7011 | 32 + .../.history/62/b0911729c36e001a17dd93e105fd0cb6 | 50 - .../.history/62/c041c08b9571001a1f70833eb9ed7011 | 22 + .../.history/62/c09f589b8f71001a1f70833eb9ed7011 | 26 + .../.history/62/d0332daab06e001a18bbdaa1f718f3a2 | 36 - .../.history/62/d07619b58771001a1f70833eb9ed7011 | 15 + .../.history/62/e0dd97429b71001a1f70833eb9ed7011 | 22 + .../.history/62/e0e573509571001a1f70833eb9ed7011 | 15 + .../.history/62/f0f346cd9071001a1f70833eb9ed7011 | 56 + .../.history/63/10c41faaf46c001a1f3dc7d0d6cfdd9d | 26 - .../.history/63/70fa81e39a71001a1f70833eb9ed7011 | 22 + .../.history/63/71e4318b9571001a1f70833eb9ed7011 | 15 + .../.history/63/8093cab48771001a1f70833eb9ed7011 | 15 + .../.history/63/b07ff96e8771001a1f70833eb9ed7011 | 29 + .../.history/63/f09bf38db56e001a173da96cce181ab0 | 26 - .../.history/63/f1a0129c8f71001a1f70833eb9ed7011 | 204 + .../.history/64/109d29cc9071001a1f70833eb9ed7011 | 50 + .../.history/64/20d7668b9571001a1f70833eb9ed7011 | 15 + .../.history/64/4018a5e78f71001a1f70833eb9ed7011 | 26 + .../.history/64/40d0f68db56e001a173da96cce181ab0 | 26 - .../.history/64/50f682429b71001a1f70833eb9ed7011 | 32 + .../.history/64/600c938a9571001a1f70833eb9ed7011 | 62 + .../.history/64/60f051419b71001a1f70833eb9ed7011 | 85 + .../.history/64/a05bfe8bb56e001a173da96cce181ab0 | 50 - .../.history/64/d0bd04adb06e001a18bbdaa1f718f3a2 | 15 - .../.history/64/f08e3918b66e001a173da96cce181ab0 | 15 - .../.history/65/1183a79b8f71001a1f70833eb9ed7011 | 15 + .../.history/65/4024a3c6f16c001a1f3dc7d0d6cfdd9d | 15 - .../.history/65/607226e78f71001a1f70833eb9ed7011 | 15 + .../.history/65/8061ade19a71001a1f70833eb9ed7011 | 22 + .../.history/65/908947519571001a1f70833eb9ed7011 | 50 + .../.history/65/a065de4c0c6d001a1f3dc7d0d6cfdd9d | 26 - .../.history/65/a0c2fb17b66e001a173da96cce181ab0 | 722 --- .../.history/65/a10803b58771001a1f70833eb9ed7011 | 32 + .../.history/65/d00062429b71001a1f70833eb9ed7011 | 26 + .../.history/65/f07ed7429b71001a1f70833eb9ed7011 | 43 + .../.history/65/f0ed86429b71001a1f70833eb9ed7011 | 22 + .../.history/66/302973cc9071001a1f70833eb9ed7011 | 15 + .../.history/66/60226b6e8771001a1f70833eb9ed7011 | 32 + .../.history/66/71e39b398871001a1f70833eb9ed7011 | 29 + .../.history/66/a13262509571001a1f70833eb9ed7011 | 15 + .../.history/66/a1bdc39b8f71001a1f70833eb9ed7011 | 15 + .../.history/66/b0c2cf1d146d001a1f3dc7d0d6cfdd9d | 15 - .../.history/66/c0887aa9076d001a1f3dc7d0d6cfdd9d | 26 - .../.history/66/e0b78b16b66e001a173da96cce181ab0 | 29 - .../.history/66/f0df7be39a71001a1f70833eb9ed7011 | 26 + .../.history/67/00920b519571001a1f70833eb9ed7011 | 44 + .../.history/67/306c8c429b71001a1f70833eb9ed7011 | 26 + .../.history/67/609caa6e8771001a1f70833eb9ed7011 | 15 + .../.history/67/b09a28e49a71001a1f70833eb9ed7011 | 50 + .../.history/67/d0da0e58f46c001a1f3dc7d0d6cfdd9d | 26 - .../.history/67/f0448aca9071001a1f70833eb9ed7011 | 26 + .../.history/67/f0adfca9b06e001a18bbdaa1f718f3a2 | 32 - .../.history/68/00622e8b9571001a1f70833eb9ed7011 | 44 + .../.history/68/205b7616b66e001a173da96cce181ab0 | 15 - .../.history/68/402037429b71001a1f70833eb9ed7011 | 38 + .../.history/68/40c993ab9071001a1f70833eb9ed7011 | 26 + .../.history/68/80971be39a71001a1f70833eb9ed7011 | 15 + .../.history/68/9040068b9571001a1f70833eb9ed7011 | 50 + .../.history/68/a02c739b8f71001a1f70833eb9ed7011 | 26 + .../.history/68/b04a63cc9071001a1f70833eb9ed7011 | 26 + .../.history/68/e06b6bcd9071001a1f70833eb9ed7011 | 866 +++ .../.history/68/e0f7cc6b8771001a1f70833eb9ed7011 | 211 + .../.history/69/0036d0ab9071001a1f70833eb9ed7011 | 32 + .../.history/69/301dc4aa9071001a1f70833eb9ed7011 | 50 + .../.history/69/602e348b9571001a1f70833eb9ed7011 | 32 + .../.history/69/60fb326e8771001a1f70833eb9ed7011 | 15 + .../.history/69/702bff6b8771001a1f70833eb9ed7011 | 50 + .../.history/69/90268edb9a71001a1f70833eb9ed7011 | 778 +++ .../.history/69/d0f6273a8871001a1f70833eb9ed7011 | 43 + .../.history/6a/00bb2f9b8f71001a1f70833eb9ed7011 | 56 + .../.history/6a/00d1f018b66e001a173da96cce181ab0 | 56 - .../.history/6a/110529519571001a1f70833eb9ed7011 | 15 + .../.history/6a/90343d6e8771001a1f70833eb9ed7011 | 15 + .../.history/6a/913e259c8f71001a1f70833eb9ed7011 | 22 + .../.history/6a/b036c3388871001a1f70833eb9ed7011 | 26 + .../.history/6a/e0294f9b8f71001a1f70833eb9ed7011 | 26 + .../.history/6a/f092cd998f71001a1f70833eb9ed7011 | 38 + .../.history/6b/007c5029c36e001a17dd93e105fd0cb6 | 82 - .../.history/6b/306869acb06e001a18bbdaa1f718f3a2 | 26 - .../.history/6b/404221e78f71001a1f70833eb9ed7011 | 26 + .../.history/6b/40f00ae68f71001a1f70833eb9ed7011 | 106 + .../.history/6b/60b135b58771001a1f70833eb9ed7011 | 36 + .../.history/6b/60f1a7398871001a1f70833eb9ed7011 | 38 + .../.history/6b/70b91f3a8871001a1f70833eb9ed7011 | 36 + .../.history/6b/a05a4b080d6d001a1f3dc7d0d6cfdd9d | 15 - .../.history/6b/b01f589a8f71001a1f70833eb9ed7011 | 104 + .../.history/6b/c137ed398871001a1f70833eb9ed7011 | 22 + .../.history/6b/d03cdbacb06e001a18bbdaa1f718f3a2 | 32 - .../.history/6b/d0a9d2b48771001a1f70833eb9ed7011 | 15 + .../.history/6b/e0e22e429b71001a1f70833eb9ed7011 | 15 + .../.history/6b/f07a826e8771001a1f70833eb9ed7011 | 22 + .../.history/6b/f0d2edb48771001a1f70833eb9ed7011 | 32 + .../.history/6c/30065518b66e001a173da96cce181ab0 | 15 - .../.history/6c/309cc8cc9071001a1f70833eb9ed7011 | 15 + .../.history/6c/60f98f509571001a1f70833eb9ed7011 | 26 + .../.history/6c/80f35dcc9071001a1f70833eb9ed7011 | 15 + .../.history/6c/90b0189b8f71001a1f70833eb9ed7011 | 38 + .../.history/6c/a08f4218b66e001a173da96cce181ab0 | 15 - .../.history/6c/c05cf08cb56e001a173da96cce181ab0 | 57 - .../.history/6d/00244d509571001a1f70833eb9ed7011 | 38 + .../.history/6d/0037d5b38771001a1f70833eb9ed7011 | 26 + .../.history/6d/20d5fd8db56e001a173da96cce181ab0 | 15 - .../.history/6d/4042cc398871001a1f70833eb9ed7011 | 15 + .../.history/6d/405a5d8eb56e001a173da96cce181ab0 | 0 .../.history/6d/501789cb9071001a1f70833eb9ed7011 | 183 + .../.history/6d/50a0fecc9071001a1f70833eb9ed7011 | 36 + .../.history/6d/b0dcde509571001a1f70833eb9ed7011 | 26 + .../.history/6d/c0d036aab06e001a18bbdaa1f718f3a2 | 57 - .../.history/6d/e02c03ac9071001a1f70833eb9ed7011 | 22 + .../.history/6d/e08cf58cb56e001a173da96cce181ab0 | 50 - .../.history/6e/11a7298b9571001a1f70833eb9ed7011 | 26 + .../.history/6e/300d9e9b8f71001a1f70833eb9ed7011 | 32 + .../.history/6e/504ce08bb56e001a173da96cce181ab0 | 22 - .../.history/6e/81dfca509571001a1f70833eb9ed7011 | 22 + .../.history/6e/e00dd6e39a71001a1f70833eb9ed7011 | 22 + .../.history/6f/102a5e6e8771001a1f70833eb9ed7011 | 22 + .../.history/6f/109a5d82c06e001a17dd93e105fd0cb6 | 133 - .../.history/6f/202070e39a71001a1f70833eb9ed7011 | 26 + .../.history/6f/30afef8eb56e001a173da96cce181ab0 | 38 - .../.history/6f/31fdd0398871001a1f70833eb9ed7011 | 22 + .../.history/6f/407cfeacb06e001a18bbdaa1f718f3a2 | 22 - .../.history/6f/80ebf618b66e001a173da96cce181ab0 | 50 - .../.history/6f/c0c6ea398871001a1f70833eb9ed7011 | 32 + .../.history/6f/d0db45e39a71001a1f70833eb9ed7011 | 15 + .../.history/7/006857e39a71001a1f70833eb9ed7011 | 15 + .../.history/7/00a8ba4f9571001a1f70833eb9ed7011 | 50 + .../.history/7/01f4276d8771001a1f70833eb9ed7011 | 15 + .../.history/7/103bdfe78f71001a1f70833eb9ed7011 | 44 + .../.history/7/109e9ce58f71001a1f70833eb9ed7011 | 44 + .../.history/7/10fd25a3f36c001a1f3dc7d0d6cfdd9d | 26 - .../.history/7/4066f5998f71001a1f70833eb9ed7011 | 57 + .../.history/7/40930f8fb56e001a173da96cce181ab0 | 847 --- .../.history/7/40f7459a8f71001a1f70833eb9ed7011 | 463 ++ .../.history/7/609310398871001a1f70833eb9ed7011 | 104 + .../.history/7/802617cc9071001a1f70833eb9ed7011 | 15 + .../.history/7/d0b68b398871001a1f70833eb9ed7011 | 26 + .../.history/7/e1a9158b9571001a1f70833eb9ed7011 | 15 + .../.history/70/0015174f9571001a1f70833eb9ed7011 | 62 + .../.history/70/00efeb18b66e001a173da96cce181ab0 | 204 - .../.history/70/30490cabb06e001a18bbdaa1f718f3a2 | 162 - .../.history/70/30883eac9071001a1f70833eb9ed7011 | 32 + .../.history/70/401ed8388871001a1f70833eb9ed7011 | 44 + .../.history/70/408f698eb56e001a173da96cce181ab0 | 15 - .../.history/70/506c11bbf56c001a1f3dc7d0d6cfdd9d | 26 - .../.history/70/706a9416b66e001a173da96cce181ab0 | 36 - .../.history/70/a0133ccc9071001a1f70833eb9ed7011 | 26 + .../.history/70/b078be429b71001a1f70833eb9ed7011 | 26 + .../.history/70/e175b26c8771001a1f70833eb9ed7011 | 43 + .../.history/71/20fe23b58771001a1f70833eb9ed7011 | 15 + .../.history/71/218d546e8771001a1f70833eb9ed7011 | 22 + .../.history/71/30d8f7429b71001a1f70833eb9ed7011 | 188 + .../.history/71/41364b3a8871001a1f70833eb9ed7011 | 43 + .../.history/71/500c9829c36e001a17dd93e105fd0cb6 | 86 - .../.history/71/5162168a9571001a1f70833eb9ed7011 | 15 + .../.history/71/60e971ab9071001a1f70833eb9ed7011 | 26 + .../.history/71/7049b38b9571001a1f70833eb9ed7011 | 56 + .../.history/71/70c0af9b8f71001a1f70833eb9ed7011 | 15 + .../.history/71/a0720faab06e001a18bbdaa1f718f3a2 | 38 - .../.history/71/a0bb1fe78f71001a1f70833eb9ed7011 | 22 + .../.history/71/b0c29aaab06e001a18bbdaa1f718f3a2 | 410 -- .../.history/71/e03b6a18b66e001a173da96cce181ab0 | 15 - .../.history/71/e09ac98cb56e001a173da96cce181ab0 | 146 - .../.history/71/e123558b9571001a1f70833eb9ed7011 | 22 + .../.history/71/f0cf259b8f71001a1f70833eb9ed7011 | 38 + .../.history/71/f0eb846e8771001a1f70833eb9ed7011 | 26 + .../.history/72/10a7298b9571001a1f70833eb9ed7011 | 15 + .../.history/72/20839ee39a71001a1f70833eb9ed7011 | 22 + .../.history/72/20f60a6d8771001a1f70833eb9ed7011 | 632 +++ .../.history/72/3087dd9b8f71001a1f70833eb9ed7011 | 44 + .../.history/72/50166b9b8f71001a1f70833eb9ed7011 | 15 + .../.history/72/6019768b9571001a1f70833eb9ed7011 | 15 + .../.history/72/60a28d18b66e001a173da96cce181ab0 | 32 - .../.history/72/701420aab06e001a18bbdaa1f718f3a2 | 38 - .../.history/72/90664e9b8f71001a1f70833eb9ed7011 | 15 + .../.history/72/b090deb48771001a1f70833eb9ed7011 | 15 + .../.history/72/c083c3b38771001a1f70833eb9ed7011 | 36 + .../.history/72/c1d8988a9571001a1f70833eb9ed7011 | 43 + .../.history/72/e01b75da6d6e001a1f3dc7d0d6cfdd9d | 26 - .../.history/72/e0a2b0b48771001a1f70833eb9ed7011 | 26 + .../.history/73/0013b7acb06e001a18bbdaa1f718f3a2 | 44 - .../.history/73/0112f0b38771001a1f70833eb9ed7011 | 85 + .../.history/73/205d278b9571001a1f70833eb9ed7011 | 15 + .../.history/73/403159ab9071001a1f70833eb9ed7011 | 29 + .../.history/73/503a55509571001a1f70833eb9ed7011 | 56 + .../.history/73/50e87ba9076d001a1f3dc7d0d6cfdd9d | 15 - .../.history/73/50f307e49a71001a1f70833eb9ed7011 | 15 + .../.history/73/60584fcd9071001a1f70833eb9ed7011 | 50 + .../.history/73/70bde38db56e001a173da96cce181ab0 | 15 - .../.history/73/70cfe4ab9071001a1f70833eb9ed7011 | 32 + .../.history/73/90a994429b71001a1f70833eb9ed7011 | 22 + .../.history/73/a0b821419b71001a1f70833eb9ed7011 | 58 + .../.history/73/d09f4209f56c001a1f3dc7d0d6cfdd9d | 15 - .../.history/73/f08080ca9071001a1f70833eb9ed7011 | 36 + .../.history/74/106fc3acb06e001a18bbdaa1f718f3a2 | 15 - .../.history/74/208d546e8771001a1f70833eb9ed7011 | 32 + .../.history/74/21fe23b58771001a1f70833eb9ed7011 | 32 + .../.history/74/40342c8a9571001a1f70833eb9ed7011 | 29 + .../.history/74/409139429b71001a1f70833eb9ed7011 | 26 + .../.history/74/51dd6f6e8771001a1f70833eb9ed7011 | 15 + .../.history/74/802480acb06e001a18bbdaa1f718f3a2 | 26 - .../.history/74/a09e4facb06e001a18bbdaa1f718f3a2 | 57 - .../.history/74/e03d2fb48771001a1f70833eb9ed7011 | 62 + .../.history/74/f022dce68f71001a1f70833eb9ed7011 | 29 + .../.history/75/1066e36b8771001a1f70833eb9ed7011 | 36 + .../.history/75/700d2eac9071001a1f70833eb9ed7011 | 32 + .../.history/75/80e338e39a71001a1f70833eb9ed7011 | 29 + .../.history/75/9058a9e39a71001a1f70833eb9ed7011 | 15 + .../.history/75/d026f2e78f71001a1f70833eb9ed7011 | 26 + .../.history/75/d0d06facb06e001a18bbdaa1f718f3a2 | 38 - .../.history/75/e0ef11439b71001a1f70833eb9ed7011 | 38 + .../.history/76/100529519571001a1f70833eb9ed7011 | 26 + .../.history/76/215d278b9571001a1f70833eb9ed7011 | 26 + .../.history/76/301c628b9571001a1f70833eb9ed7011 | 26 + .../.history/76/5025b901db6c001a1f3dc7d0d6cfdd9d | 26 - .../.history/76/51fb37b58771001a1f70833eb9ed7011 | 36 + .../.history/76/905e69509571001a1f70833eb9ed7011 | 26 + .../.history/77/30dfaae39a71001a1f70833eb9ed7011 | 26 + .../.history/77/80e2c7e78f71001a1f70833eb9ed7011 | 15 + .../.history/77/9001136c8771001a1f70833eb9ed7011 | 36 + .../.history/77/901cb1cc9071001a1f70833eb9ed7011 | 26 + .../.history/77/9065cb200b6d001a1f3dc7d0d6cfdd9d | 15 - .../.history/77/b0813618b66e001a173da96cce181ab0 | 15 - .../.history/77/c018a6ab9071001a1f70833eb9ed7011 | 15 + .../.history/77/f0c17ecc9071001a1f70833eb9ed7011 | 26 + .../.history/78/0118e9b48771001a1f70833eb9ed7011 | 32 + .../.history/78/105c1ee78f71001a1f70833eb9ed7011 | 32 + .../.history/78/1077c718b66e001a173da96cce181ab0 | 43 - .../.history/78/203ce8a99071001a1f70833eb9ed7011 | 29 + .../.history/78/20ec0e8eb56e001a173da96cce181ab0 | 32 - .../.history/78/308dcb419b71001a1f70833eb9ed7011 | 183 + .../.history/78/71b0e2398871001a1f70833eb9ed7011 | 15 + .../.history/78/901f7f6e8771001a1f70833eb9ed7011 | 22 + .../.history/78/a08db4429b71001a1f70833eb9ed7011 | 57 + .../.history/78/b01f418eb56e001a173da96cce181ab0 | 26 - .../.history/78/b096ad398871001a1f70833eb9ed7011 | 26 + .../.history/78/b173c19b8f71001a1f70833eb9ed7011 | 57 + .../.history/78/c164d7b48771001a1f70833eb9ed7011 | 15 + .../.history/78/e0245918b66e001a173da96cce181ab0 | 44 - .../.history/78/e0551e9b8f71001a1f70833eb9ed7011 | 26 + .../.history/78/f0f8ddcc9071001a1f70833eb9ed7011 | 26 + .../.history/79/1083a79b8f71001a1f70833eb9ed7011 | 26 + .../.history/79/309e7c8a9571001a1f70833eb9ed7011 | 146 + .../.history/79/5093eda99071001a1f70833eb9ed7011 | 50 + .../.history/79/609f368b9571001a1f70833eb9ed7011 | 22 + .../.history/79/71af8d509571001a1f70833eb9ed7011 | 36 + .../.history/79/a0d1a3b48771001a1f70833eb9ed7011 | 38 + .../.history/79/b04e8be78f71001a1f70833eb9ed7011 | 15 + .../.history/7a/005d08ac9071001a1f70833eb9ed7011 | 26 + .../.history/7a/0081b9cc9071001a1f70833eb9ed7011 | 15 + .../.history/7a/00b38416b66e001a173da96cce181ab0 | 43 - .../.history/7a/30acefcc9071001a1f70833eb9ed7011 | 15 + .../.history/7a/40aa64cc9071001a1f70833eb9ed7011 | 15 + .../.history/7a/40f1bcaa9071001a1f70833eb9ed7011 | 57 + .../.history/7a/803ffde68f71001a1f70833eb9ed7011 | 15 + .../.history/7a/900ca36c8771001a1f70833eb9ed7011 | 162 + .../.history/7a/91b1088b9571001a1f70833eb9ed7011 | 15 + .../.history/7a/c08532e49a71001a1f70833eb9ed7011 | 29 + .../.history/7a/d1f3178b9571001a1f70833eb9ed7011 | 15 + .../.history/7b/103313e39a71001a1f70833eb9ed7011 | 29 + .../.history/7b/40220dadb06e001a18bbdaa1f718f3a2 | 26 - .../.history/7b/60717b419b71001a1f70833eb9ed7011 | 463 ++ .../.history/7b/61b4f48a9571001a1f70833eb9ed7011 | 26 + .../.history/7b/70cec96c8771001a1f70833eb9ed7011 | 183 + .../.history/7b/90d065aa9071001a1f70833eb9ed7011 | 463 ++ .../.history/7b/a0355fe78f71001a1f70833eb9ed7011 | 15 + .../.history/7b/a0ee58e39a71001a1f70833eb9ed7011 | 26 + .../.history/7b/b0d05c429b71001a1f70833eb9ed7011 | 15 + .../.history/7b/c028b7388871001a1f70833eb9ed7011 | 211 + .../.history/7b/f06573429b71001a1f70833eb9ed7011 | 32 + .../.history/7b/f1e7abb48771001a1f70833eb9ed7011 | 26 + .../.history/7c/01abbf6e8771001a1f70833eb9ed7011 | 36 + .../.history/7c/30b0e08db56e001a173da96cce181ab0 | 15 - .../.history/7c/4057264f9571001a1f70833eb9ed7011 | 85 + .../.history/7c/5090d9e39a71001a1f70833eb9ed7011 | 15 + .../.history/7c/7034dfacb06e001a18bbdaa1f718f3a2 | 32 - .../.history/7c/705348419b71001a1f70833eb9ed7011 | 62 + .../.history/7c/70f695acb06e001a18bbdaa1f718f3a2 | 15 - .../.history/7c/a0133ee39a71001a1f70833eb9ed7011 | 26 + .../.history/7c/b04b56e29a71001a1f70833eb9ed7011 | 62 + .../.history/7c/c07429e68f71001a1f70833eb9ed7011 | 146 + .../.history/7d/30dd289b8f71001a1f70833eb9ed7011 | 26 + .../.history/7d/409b008b9571001a1f70833eb9ed7011 | 26 + .../.history/7d/40e3a7e19a71001a1f70833eb9ed7011 | 36 + .../.history/7d/70c05018b66e001a173da96cce181ab0 | 26 - .../.history/7d/90aeaeacb06e001a18bbdaa1f718f3a2 | 26 - .../.history/7d/91fe889b8f71001a1f70833eb9ed7011 | 22 + .../.history/7d/a01816ac9071001a1f70833eb9ed7011 | 26 + .../.history/7d/a04b0017b66e001a173da96cce181ab0 | 155 - .../.history/7d/a0c2b4398871001a1f70833eb9ed7011 | 26 + .../.history/7d/b16c313a8871001a1f70833eb9ed7011 | 15 + .../.history/7d/c0f0024f9571001a1f70833eb9ed7011 | 38 + .../.history/7d/d07a68cc9071001a1f70833eb9ed7011 | 15 + .../.history/7d/e0fa31509571001a1f70833eb9ed7011 | 62 + .../.history/7d/f015b1509571001a1f70833eb9ed7011 | 22 + .../.history/7e/00d3308b9571001a1f70833eb9ed7011 | 36 + .../.history/7e/104826b58771001a1f70833eb9ed7011 | 22 + .../.history/7e/11edd2b38771001a1f70833eb9ed7011 | 43 + .../.history/7e/30d2ff509571001a1f70833eb9ed7011 | 15 + .../.history/7e/505a3b8b9571001a1f70833eb9ed7011 | 26 + .../.history/7e/50bedfb38771001a1f70833eb9ed7011 | 44 + .../.history/7e/50f22d6e8771001a1f70833eb9ed7011 | 15 + .../.history/7e/603071acb06e001a18bbdaa1f718f3a2 | 29 - .../.history/7e/60ecb69b8f71001a1f70833eb9ed7011 | 26 + .../.history/7e/707ba9cc9071001a1f70833eb9ed7011 | 32 + .../.history/7e/b0a9756e8771001a1f70833eb9ed7011 | 22 + .../.history/7e/d0a293e29a71001a1f70833eb9ed7011 | 62 + .../.history/7e/f065f6acb06e001a18bbdaa1f718f3a2 | 32 - .../.history/7f/40cbfab48771001a1f70833eb9ed7011 | 32 + .../.history/7f/41add5388871001a1f70833eb9ed7011 | 29 + .../.history/7f/50d19d429b71001a1f70833eb9ed7011 | 15 + .../.history/7f/6028a34f9571001a1f70833eb9ed7011 | 162 + .../.history/7f/61c24db48771001a1f70833eb9ed7011 | 57 + .../.history/7f/700c6e18b66e001a173da96cce181ab0 | 22 - .../.history/7f/8122c8b48771001a1f70833eb9ed7011 | 26 + .../.history/7f/81f6ce388871001a1f70833eb9ed7011 | 15 + .../.history/7f/a05394adb06e001a18bbdaa1f718f3a2 | 29 - .../.history/7f/a0a8a618b66e001a173da96cce181ab0 | 15 - .../.history/7f/c09306e49a71001a1f70833eb9ed7011 | 26 + .../.history/7f/e135876e8771001a1f70833eb9ed7011 | 26 + .../.history/7f/f0a06d29c36e001a17dd93e105fd0cb6 | 128 - .../.history/8/50cbaeab9071001a1f70833eb9ed7011 | 22 + .../.history/8/50dd6f6e8771001a1f70833eb9ed7011 | 26 + .../.history/8/80a742e39a71001a1f70833eb9ed7011 | 15 + .../.history/8/909934cc9071001a1f70833eb9ed7011 | 26 + .../.history/8/a04b5e8b9571001a1f70833eb9ed7011 | 26 + .../.history/8/b07dd8acb06e001a18bbdaa1f718f3a2 | 22 - .../.history/8/c0c91a6c8771001a1f70833eb9ed7011 | 57 + .../.history/8/e08154519571001a1f70833eb9ed7011 | 32 + .../.history/80/10427529c36e001a17dd93e105fd0cb6 | 87 - .../.history/80/319c9b9b8f71001a1f70833eb9ed7011 | 22 + .../.history/80/706c2f8eb56e001a173da96cce181ab0 | 32 - .../.history/81/00411fe39a71001a1f70833eb9ed7011 | 15 + .../.history/81/00d2866c8771001a1f70833eb9ed7011 | 146 + .../.history/81/20b3e49b8f71001a1f70833eb9ed7011 | 44 + .../.history/81/30bd916e8771001a1f70833eb9ed7011 | 15 + .../.history/81/41fbe14e9571001a1f70833eb9ed7011 | 22 + .../.history/81/506ad3ab9071001a1f70833eb9ed7011 | 26 + .../.history/81/604033b58771001a1f70833eb9ed7011 | 44 + .../.history/81/a076ece68f71001a1f70833eb9ed7011 | 29 + .../.history/81/d06bee8db56e001a173da96cce181ab0 | 22 - .../.history/81/e07bdd8db56e001a173da96cce181ab0 | 15 - .../.history/81/e138138b9571001a1f70833eb9ed7011 | 15 + .../.history/82/10c931429b71001a1f70833eb9ed7011 | 15 + .../.history/82/2087b618b66e001a173da96cce181ab0 | 22 - .../.history/82/306106ac9071001a1f70833eb9ed7011 | 15 + .../.history/82/30998716b66e001a173da96cce181ab0 | 15 - .../.history/82/5080118a9571001a1f70833eb9ed7011 | 36 + .../.history/82/c0d962519571001a1f70833eb9ed7011 | 866 +++ .../.history/82/e104c4398871001a1f70833eb9ed7011 | 26 + .../.history/82/f0bf2bcc9071001a1f70833eb9ed7011 | 26 + .../.history/83/10bc97e58f71001a1f70833eb9ed7011 | 29 + .../.history/83/2013083af06c001a1f3dc7d0d6cfdd9d | 15 - .../.history/83/206a38cc9071001a1f70833eb9ed7011 | 26 + .../.history/83/2171eb4e9571001a1f70833eb9ed7011 | 15 + .../.history/83/30665acb9071001a1f70833eb9ed7011 | 162 + .../.history/83/30a639ac9071001a1f70833eb9ed7011 | 26 + .../.history/83/60b80bac9071001a1f70833eb9ed7011 | 26 + .../.history/83/70f5baaa9071001a1f70833eb9ed7011 | 62 + .../.history/83/8075bbab9071001a1f70833eb9ed7011 | 26 + .../.history/83/9022f58db56e001a173da96cce181ab0 | 15 - .../.history/83/90a152ab9071001a1f70833eb9ed7011 | 57 + .../.history/83/a1e9208a9571001a1f70833eb9ed7011 | 43 + .../.history/83/b00a128cb56e001a173da96cce181ab0 | 38 - .../.history/83/c00784429b71001a1f70833eb9ed7011 | 22 + .../.history/83/d07f01e39a71001a1f70833eb9ed7011 | 722 +++ .../.history/83/e062b0e78f71001a1f70833eb9ed7011 | 26 + .../.history/83/f0f4828cb56e001a173da96cce181ab0 | 410 -- .../.history/84/0041efa99071001a1f70833eb9ed7011 | 43 + .../.history/84/21b3e49b8f71001a1f70833eb9ed7011 | 36 + .../.history/84/303aff16b66e001a173da96cce181ab0 | 146 - .../.history/84/30a6b2acb06e001a18bbdaa1f718f3a2 | 15 - .../.history/84/705e718b9571001a1f70833eb9ed7011 | 62 + .../.history/84/70f6636e8771001a1f70833eb9ed7011 | 32 + .../.history/84/9040f08db56e001a173da96cce181ab0 | 26 - .../.history/84/91c307b58771001a1f70833eb9ed7011 | 22 + .../.history/84/a08c5cab9071001a1f70833eb9ed7011 | 38 + .../.history/84/e0196e6c8771001a1f70833eb9ed7011 | 106 + .../.history/84/e08b4ae29a71001a1f70833eb9ed7011 | 104 + .../.history/84/e0d90fb58771001a1f70833eb9ed7011 | 15 + .../.history/84/f021b48db56e001a173da96cce181ab0 | 15 - .../.history/84/f0bac1398871001a1f70833eb9ed7011 | 15 + .../.history/85/10018cab9071001a1f70833eb9ed7011 | 26 + .../.history/85/103f659a8f71001a1f70833eb9ed7011 | 57 + .../.history/85/40f15e18b66e001a173da96cce181ab0 | 15 - .../.history/85/41ac188a9571001a1f70833eb9ed7011 | 15 + .../.history/85/50ba55e39a71001a1f70833eb9ed7011 | 26 + .../.history/85/50ba9e8cb56e001a173da96cce181ab0 | 104 - .../.history/85/90076718b66e001a173da96cce181ab0 | 22 - .../.history/85/d0117a419b71001a1f70833eb9ed7011 | 410 ++ .../.history/85/e075c6398871001a1f70833eb9ed7011 | 15 + .../.history/86/00d4c0cc9071001a1f70833eb9ed7011 | 15 + .../.history/86/2071eb4e9571001a1f70833eb9ed7011 | 26 + .../.history/86/2094ff8bb56e001a173da96cce181ab0 | 43 - .../.history/86/30c8e2aab06e001a18bbdaa1f718f3a2 | 146 - .../.history/86/504e15398871001a1f70833eb9ed7011 | 62 + .../.history/86/60cf30b58771001a1f70833eb9ed7011 | 26 + .../.history/86/70cf5dacb06e001a18bbdaa1f718f3a2 | 38 - .../.history/86/808947e39a71001a1f70833eb9ed7011 | 26 + .../.history/86/b00ae06b8771001a1f70833eb9ed7011 | 58 + .../.history/86/c064b9419b71001a1f70833eb9ed7011 | 50 + .../.history/86/e0b4ec6b8771001a1f70833eb9ed7011 | 26 + .../.history/87/00cdd6cc9071001a1f70833eb9ed7011 | 15 + .../.history/87/20c167e78f71001a1f70833eb9ed7011 | 36 + .../.history/87/4088fd509571001a1f70833eb9ed7011 | 26 + .../.history/87/40c3cae39a71001a1f70833eb9ed7011 | 57 + .../.history/87/60bcaf72126d001a1f3dc7d0d6cfdd9d | 26 - .../.history/87/80196e509571001a1f70833eb9ed7011 | 15 + .../.history/87/80dd0f8b9571001a1f70833eb9ed7011 | 26 + .../.history/87/907d0ee78f71001a1f70833eb9ed7011 | 15 + .../.history/87/9094d6429b71001a1f70833eb9ed7011 | 50 + .../.history/87/909829b48771001a1f70833eb9ed7011 | 106 + .../.history/87/b03840b58771001a1f70833eb9ed7011 | 44 + .../.history/87/b0babf8db56e001a173da96cce181ab0 | 29 - .../.history/87/c0d0bd8b9571001a1f70833eb9ed7011 | 32 + .../.history/87/c147ba9b8f71001a1f70833eb9ed7011 | 15 + .../.history/87/f0683a8eb56e001a173da96cce181ab0 | 22 - .../.history/88/116948509571001a1f70833eb9ed7011 | 15 + .../.history/88/30d210aab06e001a18bbdaa1f718f3a2 | 29 - .../.history/88/80fb7bab9071001a1f70833eb9ed7011 | 56 + .../.history/88/c0fc05aab06e001a18bbdaa1f718f3a2 | 15 - .../.history/88/e01227adb06e001a18bbdaa1f718f3a2 | 26 - .../.history/89/201049e39a71001a1f70833eb9ed7011 | 15 + .../.history/89/3055159b8f71001a1f70833eb9ed7011 | 29 + .../.history/89/40058aab9071001a1f70833eb9ed7011 | 15 + .../.history/89/506c6d6e8771001a1f70833eb9ed7011 | 22 + .../.history/89/60c6266e8771001a1f70833eb9ed7011 | 15 + .../.history/89/80b73a9b8f71001a1f70833eb9ed7011 | 29 + .../.history/8a/00f48218b66e001a173da96cce181ab0 | 15 - .../.history/8a/119b606e8771001a1f70833eb9ed7011 | 22 + .../.history/8a/200a87419b71001a1f70833eb9ed7011 | 104 + .../.history/8a/6055f1b48771001a1f70833eb9ed7011 | 32 + .../.history/8a/90f4fb18b66e001a173da96cce181ab0 | 29 - .../.history/8a/b04f33429b71001a1f70833eb9ed7011 | 26 + .../.history/8a/b107b0398871001a1f70833eb9ed7011 | 15 + .../.history/8a/c0eba1c6f16c001a1f3dc7d0d6cfdd9d | 26 - .../.history/8a/f05e52e39a71001a1f70833eb9ed7011 | 32 + .../.history/8b/0037f1e39a71001a1f70833eb9ed7011 | 44 + .../.history/8b/306d7e509571001a1f70833eb9ed7011 | 15 + .../.history/8b/4172413a8871001a1f70833eb9ed7011 | 204 + .../.history/8b/60d58eadb06e001a18bbdaa1f718f3a2 | 43 - .../.history/8b/809c6c8eb56e001a173da96cce181ab0 | 15 - .../.history/8b/b00146acb06e001a18bbdaa1f718f3a2 | 722 --- .../.history/8b/e0cac5aa9071001a1f70833eb9ed7011 | 43 + .../.history/8b/f003f0e78f71001a1f70833eb9ed7011 | 50 + .../.history/8c/1039236d8771001a1f70833eb9ed7011 | 15 + .../.history/8c/10eb0d18b66e001a173da96cce181ab0 | 29 - .../.history/8c/3062523a8871001a1f70833eb9ed7011 | 32 + .../.history/8c/3079aa18b66e001a173da96cce181ab0 | 36 - .../.history/8c/60112138f56c001a1f3dc7d0d6cfdd9d | 15 - .../.history/8c/708215e78f71001a1f70833eb9ed7011 | 15 + .../.history/8c/712bb88b9571001a1f70833eb9ed7011 | 43 + .../.history/8c/b06399aa9071001a1f70833eb9ed7011 | 146 + .../.history/8c/c1105b9b8f71001a1f70833eb9ed7011 | 15 + .../.history/8c/f0beae18b66e001a173da96cce181ab0 | 26 - .../.history/8d/00a65aadb06e001a18bbdaa1f718f3a2 | 56 - .../.history/8d/20670d6d8771001a1f70833eb9ed7011 | 722 +++ .../.history/8d/704fad9b8f71001a1f70833eb9ed7011 | 26 + .../.history/8d/80b92e18b66e001a173da96cce181ab0 | 38 - .../.history/8d/904ad3cc9071001a1f70833eb9ed7011 | 57 + .../.history/8d/c047e7cc9071001a1f70833eb9ed7011 | 15 + .../.history/8d/c0f03be39a71001a1f70833eb9ed7011 | 15 + .../.history/8d/f0272a429b71001a1f70833eb9ed7011 | 38 + .../.history/8e/408501e78f71001a1f70833eb9ed7011 | 38 + .../.history/8e/501cdc8db56e001a173da96cce181ab0 | 26 - .../.history/8e/606f71e58f71001a1f70833eb9ed7011 | 36 + .../.history/8e/7020128eb56e001a173da96cce181ab0 | 26 - .../.history/8e/70db3455d66c001a1f3dc7d0d6cfdd9d | 26 - .../.history/8e/8126a16e8771001a1f70833eb9ed7011 | 26 + .../.history/8e/903d47b58771001a1f70833eb9ed7011 | 50 + .../.history/8e/90b001adb06e001a18bbdaa1f718f3a2 | 15 - .../.history/8e/90b21ae78f71001a1f70833eb9ed7011 | 26 + .../.history/8e/b00ef76e8771001a1f70833eb9ed7011 | 38 + .../.history/8e/b0128718b66e001a173da96cce181ab0 | 22 - .../.history/8e/b0309fe19a71001a1f70833eb9ed7011 | 211 + .../.history/8e/b040c6e19a71001a1f70833eb9ed7011 | 26 + .../.history/8e/c048f16b8771001a1f70833eb9ed7011 | 15 + .../.history/8e/c0b709e68f71001a1f70833eb9ed7011 | 104 + .../.history/8f/0043896c8771001a1f70833eb9ed7011 | 155 + .../.history/8f/10a3b3e19a71001a1f70833eb9ed7011 | 26 + .../.history/8f/202c32ac9071001a1f70833eb9ed7011 | 26 + .../.history/8f/206f12ac9071001a1f70833eb9ed7011 | 26 + .../.history/8f/3080b1e19a71001a1f70833eb9ed7011 | 15 + .../.history/8f/309cf5398871001a1f70833eb9ed7011 | 26 + .../.history/8f/30e478429b71001a1f70833eb9ed7011 | 26 + .../.history/8f/40da4d18b66e001a173da96cce181ab0 | 26 - .../.history/8f/50b6f8a9b06e001a18bbdaa1f718f3a2 | 36 - .../.history/8f/a0e02420f06c001a1f3dc7d0d6cfdd9d | 26 - .../.history/8f/a0f344b58771001a1f70833eb9ed7011 | 56 + .../.history/8f/c06c178db56e001a173da96cce181ab0 | 183 - .../.history/8f/f073caacb06e001a18bbdaa1f718f3a2 | 32 - .../.history/9/00652a6d8771001a1f70833eb9ed7011 | 38 + .../.history/9/10c62818b66e001a173da96cce181ab0 | 50 - .../.history/9/10eb1be78f71001a1f70833eb9ed7011 | 15 + .../.history/9/70ad39419b71001a1f70833eb9ed7011 | 38 + .../.history/9/70f7af18b66e001a173da96cce181ab0 | 15 - .../.history/9/d09414b58771001a1f70833eb9ed7011 | 15 + .../.history/9/f0289e8db56e001a173da96cce181ab0 | 38 - .../.history/90/10ec5c8b9571001a1f70833eb9ed7011 | 22 + .../.history/90/1139236d8771001a1f70833eb9ed7011 | 26 + .../.history/90/50361429c36e001a17dd93e105fd0cb6 | 411 -- .../.history/90/6020d98bb56e001a173da96cce181ab0 | 36 - .../.history/90/608a788b9571001a1f70833eb9ed7011 | 32 + .../.history/90/70e9e9e78f71001a1f70833eb9ed7011 | 44 + .../.history/90/803a66e78f71001a1f70833eb9ed7011 | 44 + .../.history/90/80b54e519571001a1f70833eb9ed7011 | 38 + .../.history/90/a04fbc6e8771001a1f70833eb9ed7011 | 36 + .../.history/90/b0a0808b9571001a1f70833eb9ed7011 | 15 + .../.history/90/b0f0aa429b71001a1f70833eb9ed7011 | 15 + .../.history/90/c04a2de39a71001a1f70833eb9ed7011 | 56 + .../.history/90/e0492b8a9571001a1f70833eb9ed7011 | 38 + .../.history/91/004807cc9071001a1f70833eb9ed7011 | 38 + .../.history/91/206f1aaab06e001a18bbdaa1f718f3a2 | 26 - .../.history/91/20b8d5398871001a1f70833eb9ed7011 | 32 + .../.history/91/41feb3b48771001a1f70833eb9ed7011 | 26 + .../.history/91/81fe1a3a8871001a1f70833eb9ed7011 | 15 + .../.history/91/900d4d8b9571001a1f70833eb9ed7011 | 32 + .../.history/91/9016e5388871001a1f70833eb9ed7011 | 86 + .../.history/91/b0287eacb06e001a18bbdaa1f718f3a2 | 50 - .../.history/91/d029b6e39a71001a1f70833eb9ed7011 | 15 + .../.history/91/d15117519571001a1f70833eb9ed7011 | 43 + .../.history/91/d198ed6e8771001a1f70833eb9ed7011 | 50 + .../.history/91/e09859b7c06e001a17dd93e105fd0cb6 | 307 -- .../.history/91/f08469ab9071001a1f70833eb9ed7011 | 15 + .../.history/91/f176a9b48771001a1f70833eb9ed7011 | 26 + .../.history/92/204644cb9071001a1f70833eb9ed7011 | 155 + .../.history/92/4049136f8771001a1f70833eb9ed7011 | 866 +++ .../.history/92/60464918b66e001a173da96cce181ab0 | 22 - .../.history/92/700810adb06e001a18bbdaa1f718f3a2 | 26 - .../.history/92/a02ca2e39a71001a1f70833eb9ed7011 | 22 + .../.history/92/c046dcb48771001a1f70833eb9ed7011 | 15 + .../.history/92/d0f6fce39a71001a1f70833eb9ed7011 | 44 + .../.history/93/809f6816b66e001a173da96cce181ab0 | 208 - .../.history/93/f0819eacb06e001a18bbdaa1f718f3a2 | 26 - .../.history/94/106948509571001a1f70833eb9ed7011 | 26 + .../.history/94/20784fac9071001a1f70833eb9ed7011 | 36 + .../.history/94/20869cacb06e001a18bbdaa1f718f3a2 | 15 - .../.history/94/20d7c1388871001a1f70833eb9ed7011 | 22 + .../.history/94/21b8d5398871001a1f70833eb9ed7011 | 22 + .../.history/94/31ab5f8b9571001a1f70833eb9ed7011 | 15 + .../.history/94/414b093a8871001a1f70833eb9ed7011 | 57 + .../.history/94/512597509571001a1f70833eb9ed7011 | 32 + .../.history/94/6042ebacb06e001a18bbdaa1f718f3a2 | 15 - .../.history/94/6085286c8771001a1f70833eb9ed7011 | 85 + .../.history/94/610ab29b8f71001a1f70833eb9ed7011 | 26 + .../.history/94/802fd6e68f71001a1f70833eb9ed7011 | 38 + .../.history/94/a09255ac9071001a1f70833eb9ed7011 | 43 + .../.history/94/e097cbe19a71001a1f70833eb9ed7011 | 38 + .../.history/94/f0705678db6c001a1f3dc7d0d6cfdd9d | 15 - .../.history/94/f0e8b8e39a71001a1f70833eb9ed7011 | 26 + .../.history/95/1067b01e066d001a1f3dc7d0d6cfdd9d | 26 - .../.history/95/31128f398871001a1f70833eb9ed7011 | 26 + .../.history/95/61fae4398871001a1f70833eb9ed7011 | 22 + .../.history/95/80c0a4cc9071001a1f70833eb9ed7011 | 32 + .../.history/95/907db9398871001a1f70833eb9ed7011 | 26 + .../.history/95/90bae716b66e001a173da96cce181ab0 | 104 - .../.history/95/a0d7e400d66c001a1f3dc7d0d6cfdd9d | 15 - .../.history/95/b0ab074f9571001a1f70833eb9ed7011 | 38 + .../.history/95/e185939b8f71001a1f70833eb9ed7011 | 15 + .../.history/95/f0b670e68f71001a1f70833eb9ed7011 | 170 + .../.history/96/109b606e8771001a1f70833eb9ed7011 | 32 + .../.history/96/3072cee78f71001a1f70833eb9ed7011 | 15 + .../.history/96/31a18c398871001a1f70833eb9ed7011 | 26 + .../.history/96/50c392e39a71001a1f70833eb9ed7011 | 22 + .../.history/96/80f29a29c36e001a17dd93e105fd0cb6 | 131 - .../.history/96/a08a1db48771001a1f70833eb9ed7011 | 410 ++ .../.history/96/b023b56e8771001a1f70833eb9ed7011 | 22 + .../.history/96/d01ad5b48771001a1f70833eb9ed7011 | 32 + .../.history/97/10c896ca9071001a1f70833eb9ed7011 | 50 + .../.history/97/207863b58771001a1f70833eb9ed7011 | 43 + .../.history/97/310cc0b48771001a1f70833eb9ed7011 | 29 + .../.history/97/5083b08eb56e001a173da96cce181ab0 | 15 - .../.history/97/60f8e6e68f71001a1f70833eb9ed7011 | 15 + .../.history/97/8184db398871001a1f70833eb9ed7011 | 22 + .../.history/97/91cac7388871001a1f70833eb9ed7011 | 29 + .../.history/97/f049bf398871001a1f70833eb9ed7011 | 15 + .../.history/98/100c06398871001a1f70833eb9ed7011 | 410 ++ .../.history/98/20b5da489571001a1f70833eb9ed7011 | 777 +++ .../.history/98/5110f6b48771001a1f70833eb9ed7011 | 32 + .../.history/98/80bb8118b66e001a173da96cce181ab0 | 26 - .../.history/98/9033238a9571001a1f70833eb9ed7011 | 26 + .../.history/98/b044adab9071001a1f70833eb9ed7011 | 32 + .../.history/98/e0c822e78f71001a1f70833eb9ed7011 | 15 + .../.history/99/00ad44adb06e001a18bbdaa1f718f3a2 | 36 - .../.history/99/305f2c8eb56e001a173da96cce181ab0 | 15 - .../.history/99/600fb9ac9071001a1f70833eb9ed7011 | 866 +++ .../.history/99/60b333e39a71001a1f70833eb9ed7011 | 15 + .../.history/99/60eec7e19a71001a1f70833eb9ed7011 | 15 + .../.history/99/70e02ce49a71001a1f70833eb9ed7011 | 50 + .../.history/99/905d77429b71001a1f70833eb9ed7011 | 22 + .../.history/99/91f54b9b8f71001a1f70833eb9ed7011 | 26 + .../.history/99/b08449ac9071001a1f70833eb9ed7011 | 36 + .../.history/99/f0251217b66e001a173da96cce181ab0 | 152 - .../.history/9a/2076f3509571001a1f70833eb9ed7011 | 32 + .../.history/9a/4001db4f9571001a1f70833eb9ed7011 | 183 + .../.history/9a/400b12aa9071001a1f70833eb9ed7011 | 57 + .../.history/9a/40a7396d8771001a1f70833eb9ed7011 | 15 + .../.history/9a/40eae6b38771001a1f70833eb9ed7011 | 62 + .../.history/9a/80dfc9419b71001a1f70833eb9ed7011 | 170 + .../.history/9a/9047da8db56e001a173da96cce181ab0 | 15 - .../.history/9a/d00517b58771001a1f70833eb9ed7011 | 15 + .../.history/9a/e03816240d6d001a1f3dc7d0d6cfdd9d | 15 - .../.history/9a/f0819e8eb56e001a173da96cce181ab0 | 44 - .../.history/9a/f133ac509571001a1f70833eb9ed7011 | 22 + .../.history/9b/50a752c9066d001a1f3dc7d0d6cfdd9d | 15 - .../.history/9b/7043cd18b66e001a173da96cce181ab0 | 36 - .../.history/9b/713fe0398871001a1f70833eb9ed7011 | 22 + .../.history/9b/902057cd9071001a1f70833eb9ed7011 | 38 + .../.history/9b/90ce79429b71001a1f70833eb9ed7011 | 15 + .../.history/9b/b0fb1a6d8771001a1f70833eb9ed7011 | 29 + .../.history/9b/d06e51c9066d001a1f3dc7d0d6cfdd9d | 26 - .../.history/9c/40a2eb998f71001a1f70833eb9ed7011 | 36 + .../.history/9c/c04e8dadb06e001a18bbdaa1f718f3a2 | 50 - .../.history/9c/c065c8b38771001a1f70833eb9ed7011 | 26 + .../.history/9c/c0efbc18b66e001a173da96cce181ab0 | 44 - .../.history/9c/d0754518b66e001a173da96cce181ab0 | 15 - .../.history/9d/0009fa398871001a1f70833eb9ed7011 | 26 + .../.history/9d/60036918b66e001a173da96cce181ab0 | 26 - .../.history/9d/60c6d6509571001a1f70833eb9ed7011 | 26 + .../.history/9d/905401cc9071001a1f70833eb9ed7011 | 62 + .../.history/9d/d0c8beb38771001a1f70833eb9ed7011 | 211 + .../.history/9d/e04a456e8771001a1f70833eb9ed7011 | 15 + .../.history/9d/f087dbcc9071001a1f70833eb9ed7011 | 22 + .../.history/9d/f0e665e39a71001a1f70833eb9ed7011 | 15 + .../.history/9e/10f283cc9071001a1f70833eb9ed7011 | 32 + .../.history/9e/307e2e8a9571001a1f70833eb9ed7011 | 44 + .../.history/9e/70b45bcd9071001a1f70833eb9ed7011 | 32 + .../.history/9e/c0fcf4509571001a1f70833eb9ed7011 | 22 + .../.history/9f/5009718eb56e001a173da96cce181ab0 | 22 - .../.history/9f/516ff98a9571001a1f70833eb9ed7011 | 26 + .../.history/9f/61b1686e8771001a1f70833eb9ed7011 | 22 + .../.history/9f/90f787adb06e001a18bbdaa1f718f3a2 | 50 - .../.history/9f/b0ec878eb56e001a173da96cce181ab0 | 44 - .../.history/9f/b0fb2e3a8871001a1f70833eb9ed7011 | 56 + .../.history/9f/d045dee68f71001a1f70833eb9ed7011 | 26 + .../.history/9f/d0af76e39a71001a1f70833eb9ed7011 | 22 + .../.history/9f/e05fb3509571001a1f70833eb9ed7011 | 32 + .../.history/a/10047218b66e001a173da96cce181ab0 | 22 - .../.history/a/40fc7d16b66e001a173da96cce181ab0 | 29 - .../.history/a/509c14adb06e001a18bbdaa1f718f3a2 | 15 - .../.history/a/50fb37b58771001a1f70833eb9ed7011 | 44 + .../.history/a/8035c118b66e001a173da96cce181ab0 | 44 - .../.history/a/c031516e8771001a1f70833eb9ed7011 | 22 + .../.history/a/c064d7b48771001a1f70833eb9ed7011 | 26 + .../.history/a/e02fd7998f71001a1f70833eb9ed7011 | 26 + .../.history/a/e0309f429b71001a1f70833eb9ed7011 | 26 + .../.history/a/f034013a8871001a1f70833eb9ed7011 | 15 + .../.history/a0/008650cc9071001a1f70833eb9ed7011 | 26 + .../.history/a0/2057a09b8f71001a1f70833eb9ed7011 | 22 + .../.history/a0/30071d8cb56e001a173da96cce181ab0 | 36 - .../.history/a0/30ecff18b66e001a173da96cce181ab0 | 22 - .../.history/a0/405b7718b66e001a173da96cce181ab0 | 22 - .../.history/a0/4072413a8871001a1f70833eb9ed7011 | 188 + .../.history/a0/40c60ccc9071001a1f70833eb9ed7011 | 38 + .../.history/a0/904198e39a71001a1f70833eb9ed7011 | 32 + .../.history/a0/90fe889b8f71001a1f70833eb9ed7011 | 32 + .../.history/a0/a0227516b66e001a173da96cce181ab0 | 26 - .../.history/a0/a08ea6509571001a1f70833eb9ed7011 | 32 + .../.history/a0/c05fa5acb06e001a18bbdaa1f718f3a2 | 32 - .../.history/a0/d013df8bb56e001a173da96cce181ab0 | 32 - .../.history/a0/e023558b9571001a1f70833eb9ed7011 | 32 + .../.history/a1/008f8dcc9071001a1f70833eb9ed7011 | 32 + .../.history/a1/20b13218b66e001a173da96cce181ab0 | 15 - .../.history/a1/507298adb06e001a18bbdaa1f718f3a2 | 32 - .../.history/a1/7022f48bb56e001a173da96cce181ab0 | 29 - .../.history/a1/70d9c2e78f71001a1f70833eb9ed7011 | 32 + .../.history/a1/a00b29419b71001a1f70833eb9ed7011 | 15 + .../.history/a1/b06db1acb06e001a18bbdaa1f718f3a2 | 26 - .../.history/a1/b0d960cc9071001a1f70833eb9ed7011 | 15 + .../.history/a1/b178b2398871001a1f70833eb9ed7011 | 15 + .../.history/a1/d066e68bb56e001a173da96cce181ab0 | 26 - .../.history/a1/e075b26c8771001a1f70833eb9ed7011 | 50 + .../.history/a1/e0e66e9b8f71001a1f70833eb9ed7011 | 22 + .../.history/a1/e0f19f18b66e001a173da96cce181ab0 | 15 - .../.history/a1/f05e7d398871001a1f70833eb9ed7011 | 722 +++ .../.history/a1/f1bac1398871001a1f70833eb9ed7011 | 26 + .../.history/a2/00742db58771001a1f70833eb9ed7011 | 15 + .../.history/a2/304c5cb58771001a1f70833eb9ed7011 | 56 + .../.history/a2/40fc8be58f71001a1f70833eb9ed7011 | 26 + .../.history/a2/503a5eab9071001a1f70833eb9ed7011 | 29 + .../.history/a2/606d0dcd9071001a1f70833eb9ed7011 | 36 + .../.history/a2/607f8a16b66e001a173da96cce181ab0 | 38 - .../.history/a2/610fa3398871001a1f70833eb9ed7011 | 50 + .../.history/a2/8021cbaab06e001a18bbdaa1f718f3a2 | 57 - .../.history/a2/805c96e58f71001a1f70833eb9ed7011 | 38 + .../.history/a2/8060446e8771001a1f70833eb9ed7011 | 26 + .../.history/a2/a043849b8f71001a1f70833eb9ed7011 | 32 + .../.history/a2/a0d535ac9071001a1f70833eb9ed7011 | 26 + .../.history/a2/a0e4aae78f71001a1f70833eb9ed7011 | 15 + .../.history/a2/b05bb4419b71001a1f70833eb9ed7011 | 62 + .../.history/a3/00646b8eb56e001a173da96cce181ab0 | 26 - .../.history/a3/100742cc9071001a1f70833eb9ed7011 | 15 + .../.history/a3/20223518b66e001a173da96cce181ab0 | 26 - .../.history/a3/20607e18b66e001a173da96cce181ab0 | 32 - .../.history/a3/3058428eb56e001a173da96cce181ab0 | 15 - .../.history/a3/501c5a509571001a1f70833eb9ed7011 | 26 + .../.history/a3/50919b9a8f71001a1f70833eb9ed7011 | 62 + .../.history/a3/50b3a2429b71001a1f70833eb9ed7011 | 15 + .../.history/a3/50e6de8eb56e001a173da96cce181ab0 | 56 - .../.history/a3/7025d218b66e001a173da96cce181ab0 | 56 - .../.history/a3/809f76e58f71001a1f70833eb9ed7011 | 22 + .../.history/a3/80fe1a3a8871001a1f70833eb9ed7011 | 26 + .../.history/a3/b182858b9571001a1f70833eb9ed7011 | 15 + .../.history/a3/c00e37e39a71001a1f70833eb9ed7011 | 38 + .../.history/a3/c0e988429b71001a1f70833eb9ed7011 | 32 + .../.history/a3/d0f3178b9571001a1f70833eb9ed7011 | 26 + .../.history/a3/e094578b9571001a1f70833eb9ed7011 | 32 + .../.history/a3/e1a2b0b48771001a1f70833eb9ed7011 | 15 + .../.history/a3/f0a4ad419b71001a1f70833eb9ed7011 | 162 + .../.history/a4/405af8b48771001a1f70833eb9ed7011 | 22 + .../.history/a4/50acca8cb56e001a173da96cce181ab0 | 155 - .../.history/a4/60191817b66e001a173da96cce181ab0 | 62 - .../.history/a4/6027ae2bdc6c001a1f3dc7d0d6cfdd9d | 15 - .../.history/a4/70b0b5cc9071001a1f70833eb9ed7011 | 15 + .../.history/a4/903527a3f36c001a1f3dc7d0d6cfdd9d | 15 - .../.history/a4/90e4d418b66e001a173da96cce181ab0 | 26 - .../.history/a4/a0c247f60a6d001a1f3dc7d0d6cfdd9d | 26 - .../.history/a4/f0858ae39a71001a1f70833eb9ed7011 | 22 + .../.history/a5/008ac99b8f71001a1f70833eb9ed7011 | 22 + .../.history/a5/00beeb8bb56e001a173da96cce181ab0 | 38 - .../.history/a5/300f7f8a9571001a1f70833eb9ed7011 | 155 + .../.history/a5/40991f9c8f71001a1f70833eb9ed7011 | 43 + .../.history/a5/8084db398871001a1f70833eb9ed7011 | 32 + .../.history/a5/a00803b58771001a1f70833eb9ed7011 | 22 + .../.history/a5/a079386e8771001a1f70833eb9ed7011 | 32 + .../.history/a5/e0f3c98db56e001a173da96cce181ab0 | 56 - .../.history/a5/e13d2fb48771001a1f70833eb9ed7011 | 57 + .../.history/a5/f058aeb48771001a1f70833eb9ed7011 | 15 + .../.history/a6/0046ee509571001a1f70833eb9ed7011 | 26 + .../.history/a6/20b3a0ca9071001a1f70833eb9ed7011 | 38 + .../.history/a6/406a138cb56e001a173da96cce181ab0 | 29 - .../.history/a6/50cea2e78f71001a1f70833eb9ed7011 | 15 + .../.history/a6/50e665ac9071001a1f70833eb9ed7011 | 26 + .../.history/a6/50f81018b66e001a173da96cce181ab0 | 15 - .../.history/a6/6008c5429b71001a1f70833eb9ed7011 | 32 + .../.history/a6/807fea9b8f71001a1f70833eb9ed7011 | 50 + .../.history/a6/80ee278a9571001a1f70833eb9ed7011 | 29 + .../.history/a6/a03262509571001a1f70833eb9ed7011 | 26 + .../.history/a6/a0bdc39b8f71001a1f70833eb9ed7011 | 26 + .../.history/a6/c053f26e8771001a1f70833eb9ed7011 | 50 + .../.history/a6/e015b1e29a71001a1f70833eb9ed7011 | 170 + .../.history/a6/e04f95ab9071001a1f70833eb9ed7011 | 15 + .../.history/a6/f08a58429b71001a1f70833eb9ed7011 | 26 + .../.history/a7/00885fadb06e001a18bbdaa1f718f3a2 | 15 - .../.history/a7/200c83e0d56c001a1f3dc7d0d6cfdd9d | 0 .../.history/a7/40fc42419b71001a1f70833eb9ed7011 | 36 + .../.history/a7/5074b1e78f71001a1f70833eb9ed7011 | 15 + .../.history/a7/6003dbb38771001a1f70833eb9ed7011 | 38 + .../.history/a7/80ea59429b71001a1f70833eb9ed7011 | 15 + .../.history/a7/90b1088b9571001a1f70833eb9ed7011 | 26 + .../.history/a7/b0f162cb9071001a1f70833eb9ed7011 | 62 + .../.history/a7/c047143a8871001a1f70833eb9ed7011 | 26 + .../.history/a8/103311cc9071001a1f70833eb9ed7011 | 15 + .../.history/a8/1073afe39a71001a1f70833eb9ed7011 | 15 + .../.history/a8/10b0508eb56e001a173da96cce181ab0 | 15 - .../.history/a8/10e17ce58f71001a1f70833eb9ed7011 | 15 + .../.history/a8/200e6817b66e001a173da96cce181ab0 | 43 - .../.history/a8/205a54ac9071001a1f70833eb9ed7011 | 50 + .../.history/a8/50bde28bb56e001a173da96cce181ab0 | 26 - .../.history/a8/71852eb58771001a1f70833eb9ed7011 | 22 + .../.history/a8/71cf738b9571001a1f70833eb9ed7011 | 26 + .../.history/a8/80c6e88db56e001a173da96cce181ab0 | 26 - .../.history/a8/9095d1ab9071001a1f70833eb9ed7011 | 22 + .../.history/a8/a05016e88f71001a1f70833eb9ed7011 | 38 + .../.history/a9/00f22f18b66e001a173da96cce181ab0 | 29 - .../.history/a9/10664af6db6c001a1f3dc7d0d6cfdd9d | 15 - .../.history/a9/107d26aab06e001a18bbdaa1f718f3a2 | 29 - .../.history/a9/109b58e68f71001a1f70833eb9ed7011 | 43 + .../.history/a9/609a898eb56e001a173da96cce181ab0 | 36 - .../.history/a9/90d8a8509571001a1f70833eb9ed7011 | 22 + .../.history/a9/b06fcae68f71001a1f70833eb9ed7011 | 722 +++ .../.history/a9/c056688eb56e001a173da96cce181ab0 | 26 - .../.history/a9/c0a5df8a9571001a1f70833eb9ed7011 | 632 +++ .../.history/a9/d08bba509571001a1f70833eb9ed7011 | 26 + .../.history/a9/d0a9ef16b66e001a173da96cce181ab0 | 57 - .../.history/aa/203660ab9071001a1f70833eb9ed7011 | 26 + .../.history/aa/305c65429b71001a1f70833eb9ed7011 | 15 + .../.history/aa/40ea02e49a71001a1f70833eb9ed7011 | 56 + .../.history/aa/40fbe14e9571001a1f70833eb9ed7011 | 32 + .../.history/aa/a0dcf56b8771001a1f70833eb9ed7011 | 38 + .../.history/aa/c090218b9571001a1f70833eb9ed7011 | 32 + .../.history/ab/00184eacb06e001a18bbdaa1f718f3a2 | 62 - .../.history/ab/0100bd398871001a1f70833eb9ed7011 | 26 + .../.history/ab/2084c7509571001a1f70833eb9ed7011 | 22 + .../.history/ab/20c8a29b8f71001a1f70833eb9ed7011 | 32 + .../.history/ab/702a223a8871001a1f70833eb9ed7011 | 44 + .../.history/ab/80be53e39a71001a1f70833eb9ed7011 | 22 + .../.history/ab/80df639a8f71001a1f70833eb9ed7011 | 62 + .../.history/ab/9012ce8db56e001a173da96cce181ab0 | 26 - .../.history/ab/905a7a948f71001a1f70833eb9ed7011 | 777 +++ .../.history/ab/915e69509571001a1f70833eb9ed7011 | 15 + .../.history/ab/a03d038cb56e001a173da96cce181ab0 | 15 - .../.history/ab/c01d33419b71001a1f70833eb9ed7011 | 50 + .../.history/ab/c01f1f8b9571001a1f70833eb9ed7011 | 15 + .../.history/ab/c0a8ef398871001a1f70833eb9ed7011 | 26 + .../.history/ab/c0ec43f3ef6c001a1f3dc7d0d6cfdd9d | 26 - .../.history/ac/007d4c429b71001a1f70833eb9ed7011 | 26 + .../.history/ac/0085aa8db56e001a173da96cce181ab0 | 29 - .../.history/ac/1094a8acb06e001a18bbdaa1f718f3a2 | 26 - .../.history/ac/6019779a8f71001a1f70833eb9ed7011 | 146 + .../.history/ac/6024fd4e9571001a1f70833eb9ed7011 | 26 + .../.history/ac/8041d0e39a71001a1f70833eb9ed7011 | 15 + .../.history/ac/907fdfcc9071001a1f70833eb9ed7011 | 15 + .../.history/ac/d0dfebe39a71001a1f70833eb9ed7011 | 44 + .../.history/ac/d0fb91cc9071001a1f70833eb9ed7011 | 32 + .../.history/ad/201b93adb06e001a18bbdaa1f718f3a2 | 38 - .../.history/ad/30623e6d8771001a1f70833eb9ed7011 | 38 + .../.history/ad/308834429b71001a1f70833eb9ed7011 | 15 + .../.history/ad/407e17e78f71001a1f70833eb9ed7011 | 26 + .../.history/ad/603a1c419b71001a1f70833eb9ed7011 | 211 + .../.history/ad/e0527b18b66e001a173da96cce181ab0 | 22 - .../.history/ae/30c1adcc9071001a1f70833eb9ed7011 | 32 + .../.history/ae/40ac188a9571001a1f70833eb9ed7011 | 26 + .../.history/ae/a0bdf2e39a71001a1f70833eb9ed7011 | 36 + .../.history/ae/b0719bcc9071001a1f70833eb9ed7011 | 15 + .../.history/ae/b094b76e8771001a1f70833eb9ed7011 | 15 + .../.history/ae/c0e67f18b66e001a173da96cce181ab0 | 22 - .../.history/ae/e035876e8771001a1f70833eb9ed7011 | 15 + .../.history/af/10b8a94f9571001a1f70833eb9ed7011 | 62 + .../.history/af/40228a429b71001a1f70833eb9ed7011 | 22 + .../.history/af/a09b229b8f71001a1f70833eb9ed7011 | 15 + .../.history/af/a0dbede39a71001a1f70833eb9ed7011 | 36 + .../.history/af/c06e21e49a71001a1f70833eb9ed7011 | 204 + .../.history/af/c0c37c16b66e001a173da96cce181ab0 | 38 - .../.history/af/c1d6113a8871001a1f70833eb9ed7011 | 15 + .../.history/af/e00a62ab9071001a1f70833eb9ed7011 | 15 + .../.history/af/e03f6eab9071001a1f70833eb9ed7011 | 38 + .../.history/b/60ac80429b71001a1f70833eb9ed7011 | 22 + .../.history/b/60d5ddb8f36c001a1f3dc7d0d6cfdd9d | 26 - .../.history/b/900386429b71001a1f70833eb9ed7011 | 32 + .../.history/b/b001e1b48771001a1f70833eb9ed7011 | 15 + .../.history/b/b0d7dfa99071001a1f70833eb9ed7011 | 15 + .../.history/b0/0057cee19a71001a1f70833eb9ed7011 | 29 + .../.history/b0/90a917adb06e001a18bbdaa1f718f3a2 | 15 - .../.history/b0/a004c28db56e001a173da96cce181ab0 | 26 - .../.history/b0/a02ebc4f9571001a1f70833eb9ed7011 | 43 + .../.history/b0/b038736e8771001a1f70833eb9ed7011 | 32 + .../.history/b0/b0ca2acb9071001a1f70833eb9ed7011 | 57 + .../.history/b0/b0d9ab8cb56e001a173da96cce181ab0 | 62 - .../.history/b0/c040166d8771001a1f70833eb9ed7011 | 57 + .../.history/b0/c132fc9b8f71001a1f70833eb9ed7011 | 15 + .../.history/b0/d01e26e39a71001a1f70833eb9ed7011 | 26 + .../.history/b1/10bf86adb06e001a18bbdaa1f718f3a2 | 56 - .../.history/b1/202883509571001a1f70833eb9ed7011 | 26 + .../.history/b1/20300918b66e001a173da96cce181ab0 | 29 - .../.history/b1/20c1cbb38771001a1f70833eb9ed7011 | 26 + .../.history/b1/2156c2b48771001a1f70833eb9ed7011 | 15 + .../.history/b1/30638a17b66e001a173da96cce181ab0 | 183 - .../.history/b1/30804d3a8871001a1f70833eb9ed7011 | 38 + .../.history/b1/700897ac9071001a1f70833eb9ed7011 | 50 + .../.history/b1/80e074e78f71001a1f70833eb9ed7011 | 26 + .../.history/b1/d02cf8cb9071001a1f70833eb9ed7011 | 632 +++ .../.history/b1/f02e268cb56e001a173da96cce181ab0 | 62 - .../.history/b1/f0e53a419b71001a1f70833eb9ed7011 | 29 + .../.history/b2/0094e0acb06e001a18bbdaa1f718f3a2 | 22 - .../.history/b2/20c2ef6b8771001a1f70833eb9ed7011 | 26 + .../.history/b2/40d8bf429b71001a1f70833eb9ed7011 | 15 + .../.history/b2/509ff3b48771001a1f70833eb9ed7011 | 22 + .../.history/b2/805d76cc9071001a1f70833eb9ed7011 | 32 + .../.history/b2/c0329d18b66e001a173da96cce181ab0 | 15 - .../.history/b2/c0c1f99b8f71001a1f70833eb9ed7011 | 56 + .../.history/b2/f149bf398871001a1f70833eb9ed7011 | 26 + .../.history/b3/104bcf8db56e001a173da96cce181ab0 | 15 - .../.history/b3/10e70c6c8771001a1f70833eb9ed7011 | 29 + .../.history/b3/707d8bca9071001a1f70833eb9ed7011 | 15 + .../.history/b3/a0141219b66e001a173da96cce181ab0 | 853 --- .../.history/b3/a02ec69b8f71001a1f70833eb9ed7011 | 32 + .../.history/b3/a0a71baab06e001a18bbdaa1f718f3a2 | 15 - .../.history/b3/a0f70718b66e001a173da96cce181ab0 | 38 - .../.history/b4/01998d8b9571001a1f70833eb9ed7011 | 36 + .../.history/b4/105b7dab9071001a1f70833eb9ed7011 | 50 + .../.history/b4/2056c2b48771001a1f70833eb9ed7011 | 26 + .../.history/b4/21c1cbb38771001a1f70833eb9ed7011 | 15 + .../.history/b4/30a81c9b8f71001a1f70833eb9ed7011 | 15 + .../.history/b4/90b05e6c8771001a1f70833eb9ed7011 | 463 ++ .../.history/b4/c04b9ee58f71001a1f70833eb9ed7011 | 36 + .../.history/b4/f076a9b48771001a1f70833eb9ed7011 | 29 + .../.history/b5/200275e39a71001a1f70833eb9ed7011 | 32 + .../.history/b5/40281d9c8f71001a1f70833eb9ed7011 | 50 + .../.history/b5/40665c509571001a1f70833eb9ed7011 | 15 + .../.history/b5/4091bcacb06e001a18bbdaa1f718f3a2 | 36 - .../.history/b5/50246ee39a71001a1f70833eb9ed7011 | 36 + .../.history/b6/205ae3a99071001a1f70833eb9ed7011 | 15 + .../.history/b6/305158acb06e001a18bbdaa1f718f3a2 | 38 - .../.history/b6/50cd01ac9071001a1f70833eb9ed7011 | 32 + .../.history/b6/50d4326e8771001a1f70833eb9ed7011 | 26 + .../.history/b6/70667aca9071001a1f70833eb9ed7011 | 211 + .../.history/b6/80785a3a8871001a1f70833eb9ed7011 | 866 +++ .../.history/b6/80f2eee78f71001a1f70833eb9ed7011 | 56 + .../.history/b6/a040b88db56e001a173da96cce181ab0 | 26 - .../.history/b6/e02a6dcb9071001a1f70833eb9ed7011 | 43 + .../.history/b7/1015a06e8771001a1f70833eb9ed7011 | 62 + .../.history/b7/207a329b8f71001a1f70833eb9ed7011 | 26 + .../.history/b7/20b5e6e78f71001a1f70833eb9ed7011 | 43 + .../.history/b7/30d8874f9571001a1f70833eb9ed7011 | 146 + .../.history/b7/600dad6e8771001a1f70833eb9ed7011 | 15 + .../.history/b7/6095f2acb06e001a18bbdaa1f718f3a2 | 32 - .../.history/b7/70e1a56e8771001a1f70833eb9ed7011 | 32 + .../.history/b7/80eec8e39a71001a1f70833eb9ed7011 | 62 + .../.history/b7/903e259c8f71001a1f70833eb9ed7011 | 32 + .../.history/b7/91343d6e8771001a1f70833eb9ed7011 | 26 + .../.history/b7/b0d107e88f71001a1f70833eb9ed7011 | 188 + .../.history/b7/c0203f10086d001a1f3dc7d0d6cfdd9d | 15 - .../.history/b7/e0511917b66e001a173da96cce181ab0 | 57 - .../.history/b8/107eb118b66e001a173da96cce181ab0 | 26 - .../.history/b8/20b8e1429b71001a1f70833eb9ed7011 | 56 + .../.history/b8/8078a118b66e001a173da96cce181ab0 | 26 - .../.history/b8/90b2d1429b71001a1f70833eb9ed7011 | 44 + .../.history/b8/a079f1ab9071001a1f70833eb9ed7011 | 32 + .../.history/b8/b073eecc9071001a1f70833eb9ed7011 | 26 + .../.history/b8/b111838b9571001a1f70833eb9ed7011 | 22 + .../.history/b8/e0178c6e8771001a1f70833eb9ed7011 | 15 + .../.history/b9/10aa256d8771001a1f70833eb9ed7011 | 15 + .../.history/b9/203dc38db56e001a173da96cce181ab0 | 15 - .../.history/b9/20aa358a9571001a1f70833eb9ed7011 | 57 + .../.history/b9/3053086c8771001a1f70833eb9ed7011 | 29 + .../.history/b9/308d648b9571001a1f70833eb9ed7011 | 26 + .../.history/b9/30f4a9ac9071001a1f70833eb9ed7011 | 22 + .../.history/b9/507310ac9071001a1f70833eb9ed7011 | 15 + .../.history/b9/50dc83ca9071001a1f70833eb9ed7011 | 32 + .../.history/b9/600429ac9071001a1f70833eb9ed7011 | 26 + .../.history/b9/70ac0fcc9071001a1f70833eb9ed7011 | 26 + .../.history/b9/8017c618b66e001a173da96cce181ab0 | 50 - .../.history/b9/904c9a18b66e001a173da96cce181ab0 | 15 - .../.history/b9/90aa8fab9071001a1f70833eb9ed7011 | 26 + .../.history/b9/90e551cc9071001a1f70833eb9ed7011 | 15 + .../.history/b9/b04a1fadb06e001a18bbdaa1f718f3a2 | 26 - .../.history/ba/008570e58f71001a1f70833eb9ed7011 | 58 + .../.history/ba/10d32d82f56c001a1f3dc7d0d6cfdd9d | 26 - .../.history/ba/3094b5419b71001a1f70833eb9ed7011 | 57 + .../.history/ba/312e946e8771001a1f70833eb9ed7011 | 26 + .../.history/ba/40feb3b48771001a1f70833eb9ed7011 | 29 + .../.history/ba/604ba5429b71001a1f70833eb9ed7011 | 15 + .../.history/ba/609d1fd60d6d001a1f3dc7d0d6cfdd9d | 26 - .../.history/ba/d00d0ccd9071001a1f70833eb9ed7011 | 44 + .../.history/ba/f068508b9571001a1f70833eb9ed7011 | 15 + .../.history/bb/00e2679b8f71001a1f70833eb9ed7011 | 36 + .../.history/bb/10f3e816b66e001a173da96cce181ab0 | 106 - .../.history/bb/20bd82ac9071001a1f70833eb9ed7011 | 188 + .../.history/bb/20ec248b9571001a1f70833eb9ed7011 | 15 + .../.history/bb/50cfcdacb06e001a18bbdaa1f718f3a2 | 26 - .../.history/bb/50f1138a9571001a1f70833eb9ed7011 | 22 + .../.history/bb/6040666e8771001a1f70833eb9ed7011 | 22 + .../.history/bb/6080a5398871001a1f70833eb9ed7011 | 26 + .../.history/bb/b0e2709b8f71001a1f70833eb9ed7011 | 32 + .../.history/bb/d007cfacb06e001a18bbdaa1f718f3a2 | 15 - .../.history/bb/d17619b58771001a1f70833eb9ed7011 | 26 + .../.history/bb/f06fdc16b66e001a173da96cce181ab0 | 410 -- .../.history/bc/003edbe39a71001a1f70833eb9ed7011 | 26 + .../.history/bc/10fb49080d6d001a1f3dc7d0d6cfdd9d | 26 - .../.history/bc/2025c1acb06e001a18bbdaa1f718f3a2 | 26 - .../.history/bc/2084498eb56e001a173da96cce181ab0 | 26 - .../.history/bc/30e7bd509571001a1f70833eb9ed7011 | 32 + .../.history/bc/407296e78f71001a1f70833eb9ed7011 | 22 + .../.history/bc/6055d4509571001a1f70833eb9ed7011 | 15 + .../.history/bc/6070d3e68f71001a1f70833eb9ed7011 | 57 + .../.history/bc/8026a16e8771001a1f70833eb9ed7011 | 57 + .../.history/bc/9086f6398871001a1f70833eb9ed7011 | 15 + .../.history/bc/e0a86b6c8771001a1f70833eb9ed7011 | 104 + .../.history/bd/001cf48eb56e001a173da96cce181ab0 | 32 - .../.history/bd/90e67c509571001a1f70833eb9ed7011 | 26 + .../.history/bd/9167c3b48771001a1f70833eb9ed7011 | 15 + .../.history/bd/a01bea998f71001a1f70833eb9ed7011 | 44 + .../.history/bd/a1c2b4398871001a1f70833eb9ed7011 | 15 + .../.history/bd/c0c43d9b8f71001a1f70833eb9ed7011 | 15 + .../.history/bd/d0decaab9071001a1f70833eb9ed7011 | 32 + .../.history/be/100b5c18b66e001a173da96cce181ab0 | 36 - .../.history/be/20d327419b71001a1f70833eb9ed7011 | 26 + .../.history/be/21ec248b9571001a1f70833eb9ed7011 | 26 + .../.history/be/70888f16b66e001a173da96cce181ab0 | 29 - .../.history/be/90b984e39a71001a1f70833eb9ed7011 | 32 + .../.history/be/d06313adb06e001a18bbdaa1f718f3a2 | 26 - .../.history/be/e0e104cd9071001a1f70833eb9ed7011 | 50 + .../.history/be/f05208439b71001a1f70833eb9ed7011 | 56 + .../.history/be/f05aedab9071001a1f70833eb9ed7011 | 26 + .../.history/bf/008fba398871001a1f70833eb9ed7011 | 15 + .../.history/bf/009aacca9071001a1f70833eb9ed7011 | 44 + .../.history/bf/30750418b66e001a173da96cce181ab0 | 57 - .../.history/bf/404b093a8871001a1f70833eb9ed7011 | 62 + .../.history/bf/702af5cc9071001a1f70833eb9ed7011 | 44 + .../.history/bf/8094d5cc9071001a1f70833eb9ed7011 | 26 + .../.history/bf/80a86b509571001a1f70833eb9ed7011 | 26 + .../.history/bf/a020aeca9071001a1f70833eb9ed7011 | 36 + .../.history/bf/a03b9e419b71001a1f70833eb9ed7011 | 155 + .../.history/bf/c067a918b66e001a173da96cce181ab0 | 44 - .../.history/bf/f02a6f509571001a1f70833eb9ed7011 | 26 + .../.history/bf/f033ac509571001a1f70833eb9ed7011 | 32 + .../.history/c/00e8ee8a9571001a1f70833eb9ed7011 | 38 + .../.history/c/40d888e39a71001a1f70833eb9ed7011 | 32 + .../.history/c/41db9c8b9571001a1f70833eb9ed7011 | 50 + .../.history/c/816c0d8b9571001a1f70833eb9ed7011 | 15 + .../.history/c/d02681e58f71001a1f70833eb9ed7011 | 38 + .../.history/c/f0e5bd8db56e001a173da96cce181ab0 | 38 - .../.history/c0/a108366e8771001a1f70833eb9ed7011 | 15 + .../.history/c0/c06e6aabb06e001a18bbdaa1f718f3a2 | 170 - .../.history/c0/c1c1f99b8f71001a1f70833eb9ed7011 | 50 + .../.history/c0/f04964aa9071001a1f70833eb9ed7011 | 410 ++ .../.history/c1/20e7feab9071001a1f70833eb9ed7011 | 22 + .../.history/c1/20e965b58771001a1f70833eb9ed7011 | 38 + .../.history/c1/302d9be78f71001a1f70833eb9ed7011 | 22 + .../.history/c1/40e69dac9071001a1f70833eb9ed7011 | 50 + .../.history/c1/412afe8a9571001a1f70833eb9ed7011 | 29 + .../.history/c1/5099a5e19a71001a1f70833eb9ed7011 | 58 + .../.history/c1/50d7bf998f71001a1f70833eb9ed7011 | 32 + .../.history/c1/8060768eb56e001a173da96cce181ab0 | 15 - .../.history/c1/a0b86ae58f71001a1f70833eb9ed7011 | 211 + .../.history/c1/c0d5d9b48771001a1f70833eb9ed7011 | 26 + .../.history/c1/f01019429b71001a1f70833eb9ed7011 | 722 +++ .../.history/c1/f0632aac9071001a1f70833eb9ed7011 | 15 + .../.history/c2/00c4e48cb56e001a173da96cce181ab0 | 162 - .../.history/c2/10a53d419b71001a1f70833eb9ed7011 | 38 + .../.history/c2/115de4b48771001a1f70833eb9ed7011 | 36 + .../.history/c2/308fa1acb06e001a18bbdaa1f718f3a2 | 26 - .../.history/c2/70481d3a8871001a1f70833eb9ed7011 | 44 + .../.history/c2/70b0e2398871001a1f70833eb9ed7011 | 26 + .../.history/c2/906257e68f71001a1f70833eb9ed7011 | 50 + .../.history/c2/c032fc9b8f71001a1f70833eb9ed7011 | 26 + .../.history/c2/c0fe266c8771001a1f70833eb9ed7011 | 86 + .../.history/c2/e070d59b8f71001a1f70833eb9ed7011 | 32 + .../.history/c2/e1055a8b9571001a1f70833eb9ed7011 | 32 + .../.history/c3/006811adb06e001a18bbdaa1f718f3a2 | 15 - .../.history/c3/70af8d509571001a1f70833eb9ed7011 | 44 + .../.history/c3/802180cc9071001a1f70833eb9ed7011 | 15 + .../.history/c3/a020a1e78f71001a1f70833eb9ed7011 | 26 + .../.history/c3/b085ca998f71001a1f70833eb9ed7011 | 15 + .../.history/c3/d0d23f429b71001a1f70833eb9ed7011 | 50 + .../.history/c3/d0d8ea1ed66c001a1f3dc7d0d6cfdd9d | 26 - .../.history/c3/e006eacc9071001a1f70833eb9ed7011 | 32 + .../.history/c4/005d81acb06e001a18bbdaa1f718f3a2 | 15 - .../.history/c4/007492acb06e001a18bbdaa1f718f3a2 | 15 - .../.history/c4/00f2bbcc9071001a1f70833eb9ed7011 | 26 + .../.history/c4/105d5f8b9571001a1f70833eb9ed7011 | 15 + .../.history/c4/2013c5509571001a1f70833eb9ed7011 | 32 + .../.history/c4/21e965b58771001a1f70833eb9ed7011 | 29 + .../.history/c4/308cce398871001a1f70833eb9ed7011 | 22 + .../.history/c4/40ccd89b8f71001a1f70833eb9ed7011 | 26 + .../.history/c4/90667de39a71001a1f70833eb9ed7011 | 15 + .../.history/c4/a0c2a06c8771001a1f70833eb9ed7011 | 152 + .../.history/c4/b04fb7a1e46c001a1f3dc7d0d6cfdd9d | 26 - .../.history/c4/e11982398871001a1f70833eb9ed7011 | 57 + .../.history/c4/f082c6e78f71001a1f70833eb9ed7011 | 26 + .../.history/c5/00ccb7ab9071001a1f70833eb9ed7011 | 26 + .../.history/c5/20574118b66e001a173da96cce181ab0 | 26 - .../.history/c5/206f596e8771001a1f70833eb9ed7011 | 15 + .../.history/c5/305544e39a71001a1f70833eb9ed7011 | 26 + .../.history/c5/40e21321f56c001a1f3dc7d0d6cfdd9d | 15 - .../.history/c5/40f3bfe78f71001a1f70833eb9ed7011 | 15 + .../.history/c5/600fa3398871001a1f70833eb9ed7011 | 56 + .../.history/c5/700c7ce78f71001a1f70833eb9ed7011 | 32 + .../.history/c5/70eadae68f71001a1f70833eb9ed7011 | 38 + .../.history/c5/80e0aeadb06e001a18bbdaa1f718f3a2 | 847 --- .../.history/c5/d04589398871001a1f70833eb9ed7011 | 29 + .../.history/c5/d075d1cc9071001a1f70833eb9ed7011 | 62 + .../.history/c5/e0172f398871001a1f70833eb9ed7011 | 162 + .../.history/c5/e084ba01db6c001a1f3dc7d0d6cfdd9d | 15 - .../.history/c6/00ad88cc9071001a1f70833eb9ed7011 | 32 + .../.history/c6/1049b3e78f71001a1f70833eb9ed7011 | 26 + .../.history/c6/10f44a18b66e001a173da96cce181ab0 | 26 - .../.history/c6/31bd916e8771001a1f70833eb9ed7011 | 26 + .../.history/c6/50ab57509571001a1f70833eb9ed7011 | 50 + .../.history/c6/606a92509571001a1f70833eb9ed7011 | 15 + .../.history/c6/60c5f68cb56e001a173da96cce181ab0 | 43 - .../.history/c6/9084499b8f71001a1f70833eb9ed7011 | 26 + .../.history/c6/a0ab78e39a71001a1f70833eb9ed7011 | 32 + .../.history/c6/b0a32b419b71001a1f70833eb9ed7011 | 15 + .../.history/c6/c029eccc9071001a1f70833eb9ed7011 | 22 + .../.history/c6/d1f058b58771001a1f70833eb9ed7011 | 204 + .../.history/c6/f0182ee49a71001a1f70833eb9ed7011 | 43 + .../.history/c6/f0a169429b71001a1f70833eb9ed7011 | 26 + .../.history/c6/f153928b9571001a1f70833eb9ed7011 | 43 + .../.history/c7/0064e9509571001a1f70833eb9ed7011 | 62 + .../.history/c7/0109fa398871001a1f70833eb9ed7011 | 15 + .../.history/c7/101725adb06e001a18bbdaa1f718f3a2 | 22 - .../.history/c7/306ed3398871001a1f70833eb9ed7011 | 15 + .../.history/c7/30968bacb06e001a18bbdaa1f718f3a2 | 26 - .../.history/c7/309c9b9b8f71001a1f70833eb9ed7011 | 32 + .../.history/c7/404c9f8b9571001a1f70833eb9ed7011 | 26 + .../.history/c7/80ef416e8771001a1f70833eb9ed7011 | 26 + .../.history/c7/900b1be88f71001a1f70833eb9ed7011 | 22 + .../.history/c7/9051bdcc9071001a1f70833eb9ed7011 | 15 + .../.history/c7/90c33a6e8771001a1f70833eb9ed7011 | 22 + .../.history/c7/a050df8db56e001a173da96cce181ab0 | 26 - .../.history/c7/c021da509571001a1f70833eb9ed7011 | 26 + .../.history/c7/d021383a066d001a1f3dc7d0d6cfdd9d | 26 - .../.history/c7/d0bf0f18b66e001a173da96cce181ab0 | 26 - .../.history/c8/506c26ac9071001a1f70833eb9ed7011 | 57 + .../.history/c8/909c4a8b9571001a1f70833eb9ed7011 | 22 + .../.history/c8/90fa49519571001a1f70833eb9ed7011 | 50 + .../.history/c8/a01da4509571001a1f70833eb9ed7011 | 15 + .../.history/c8/b07632cc9071001a1f70833eb9ed7011 | 29 + .../.history/c9/102028e78f71001a1f70833eb9ed7011 | 26 + .../.history/c9/2039a59b8f71001a1f70833eb9ed7011 | 22 + .../.history/c9/3037c9e68f71001a1f70833eb9ed7011 | 632 +++ .../.history/c9/309f0ee39a71001a1f70833eb9ed7011 | 29 + .../.history/c9/70e3a7429b71001a1f70833eb9ed7011 | 15 + .../.history/c9/802c92e78f71001a1f70833eb9ed7011 | 22 + .../.history/c9/806930429b71001a1f70833eb9ed7011 | 26 + .../.history/c9/a02c694f9571001a1f70833eb9ed7011 | 104 + .../.history/c9/a038f3a99071001a1f70833eb9ed7011 | 15 + .../.history/c9/c0aa8918b66e001a173da96cce181ab0 | 32 - .../.history/c9/c0c93a429b71001a1f70833eb9ed7011 | 15 + .../.history/c9/c0da0ce88f71001a1f70833eb9ed7011 | 56 + .../.history/c9/e023c6ab9071001a1f70833eb9ed7011 | 26 + .../.history/ca/20b780509571001a1f70833eb9ed7011 | 26 + .../.history/ca/30bd09e39a71001a1f70833eb9ed7011 | 57 + .../.history/ca/70f8e88eb56e001a173da96cce181ab0 | 43 - .../.history/ca/80ccf7a99071001a1f70833eb9ed7011 | 38 + .../.history/ca/b01c149b8f71001a1f70833eb9ed7011 | 38 + .../.history/ca/d0a412bbf56c001a1f3dc7d0d6cfdd9d | 15 - .../.history/ca/d145756c8771001a1f70833eb9ed7011 | 57 + .../.history/ca/f084e28db56e001a173da96cce181ab0 | 26 - .../.history/cb/103b5dcd9071001a1f70833eb9ed7011 | 22 + .../.history/cb/108012e88f71001a1f70833eb9ed7011 | 50 + .../.history/cb/21fd3c8a9571001a1f70833eb9ed7011 | 85 + .../.history/cb/30a1e1e68f71001a1f70833eb9ed7011 | 26 + .../.history/cb/4025d8ab9071001a1f70833eb9ed7011 | 32 + .../.history/cb/4036376d8771001a1f70833eb9ed7011 | 50 + .../.history/cb/5060ad8cb56e001a173da96cce181ab0 | 57 - .../.history/cb/50896118b66e001a173da96cce181ab0 | 32 - .../.history/cb/509e7daa9071001a1f70833eb9ed7011 | 62 + .../.history/cb/7149b38b9571001a1f70833eb9ed7011 | 50 + .../.history/cb/71c0af9b8f71001a1f70833eb9ed7011 | 26 + .../.history/cb/806f7fca9071001a1f70833eb9ed7011 | 58 + .../.history/cb/90c494e78f71001a1f70833eb9ed7011 | 32 + .../.history/cb/c071e5e68f71001a1f70833eb9ed7011 | 26 + .../.history/cb/c0eb24e78f71001a1f70833eb9ed7011 | 26 + .../.history/cb/d02ff88db56e001a173da96cce181ab0 | 15 - .../.history/cb/d0e74e6e8771001a1f70833eb9ed7011 | 32 + .../.history/cb/f07b22419b71001a1f70833eb9ed7011 | 36 + .../.history/cc/1018168eb56e001a173da96cce181ab0 | 32 - .../.history/cc/10f2bc429b71001a1f70833eb9ed7011 | 15 + .../.history/cc/20b1c0e39a71001a1f70833eb9ed7011 | 15 + .../.history/cc/20bf94e39a71001a1f70833eb9ed7011 | 26 + .../.history/cc/408c3c9b8f71001a1f70833eb9ed7011 | 26 + .../.history/cc/70188e50126d001a1f3dc7d0d6cfdd9d | 26 - .../.history/cc/a0c9449b8f71001a1f70833eb9ed7011 | 26 + .../.history/cc/b02805ac9071001a1f70833eb9ed7011 | 26 + .../.history/cc/f04873ab9071001a1f70833eb9ed7011 | 15 + .../.history/cd/406f1b8eb56e001a173da96cce181ab0 | 22 - .../.history/cd/5048c2998f71001a1f70833eb9ed7011 | 22 + .../.history/cd/708293cc9071001a1f70833eb9ed7011 | 22 + .../.history/cd/80619ee78f71001a1f70833eb9ed7011 | 15 + .../.history/cd/80d8628eb56e001a173da96cce181ab0 | 0 .../.history/cd/90a87be58f71001a1f70833eb9ed7011 | 26 + .../.history/cd/b09f3118b66e001a173da96cce181ab0 | 26 - .../.history/cd/d1d486398871001a1f70833eb9ed7011 | 38 + .../.history/cd/e12edc4e9571001a1f70833eb9ed7011 | 36 + .../.history/ce/20fd3c8a9571001a1f70833eb9ed7011 | 86 + .../.history/ce/519ff3b48771001a1f70833eb9ed7011 | 32 + .../.history/ce/90220b8b9571001a1f70833eb9ed7011 | 38 + .../.history/ce/b026b2ab9071001a1f70833eb9ed7011 | 15 + .../.history/ce/b038026c8771001a1f70833eb9ed7011 | 26 + .../.history/ce/b04f45aab06e001a18bbdaa1f718f3a2 | 86 - .../.history/ce/b0c46b4f9571001a1f70833eb9ed7011 | 106 + .../.history/ce/f09704e49a71001a1f70833eb9ed7011 | 50 + .../.history/cf/003f86acb06e001a18bbdaa1f718f3a2 | 29 - .../.history/cf/10a415e39a71001a1f70833eb9ed7011 | 26 + .../.history/cf/21b780509571001a1f70833eb9ed7011 | 15 + .../.history/cf/9049b4ab9071001a1f70833eb9ed7011 | 26 + .../.history/cf/b0bee3509571001a1f70833eb9ed7011 | 15 + .../.history/cf/f044ce9b8f71001a1f70833eb9ed7011 | 26 + .../.history/d/106217e88f71001a1f70833eb9ed7011 | 29 + .../.history/d/5062168a9571001a1f70833eb9ed7011 | 26 + .../.history/d/71e1a56e8771001a1f70833eb9ed7011 | 22 + .../.history/d/808eae8b9571001a1f70833eb9ed7011 | 188 + .../.history/d/b03787ca9071001a1f70833eb9ed7011 | 26 + .../.history/d/b123b56e8771001a1f70833eb9ed7011 | 26 + .../.history/d/d0117b509571001a1f70833eb9ed7011 | 32 + .../.history/d/d0d379e58f71001a1f70833eb9ed7011 | 15 + .../.history/d0/1067aee78f71001a1f70833eb9ed7011 | 15 + .../.history/d0/300cc0b48771001a1f70833eb9ed7011 | 38 + .../.history/d0/90702be68f71001a1f70833eb9ed7011 | 155 + .../.history/d0/90df58cb9071001a1f70833eb9ed7011 | 152 + .../.history/d0/d19414b58771001a1f70833eb9ed7011 | 26 + .../.history/d0/e00d4818b66e001a173da96cce181ab0 | 32 - .../.history/d0/e1bed4998f71001a1f70833eb9ed7011 | 43 + .../.history/d0/f0d8c8429b71001a1f70833eb9ed7011 | 15 + .../.history/d1/00c2199b8f71001a1f70833eb9ed7011 | 29 + .../.history/d1/308ef6e39a71001a1f70833eb9ed7011 | 50 + .../.history/d1/30a18c398871001a1f70833eb9ed7011 | 15 + .../.history/d1/40733f519571001a1f70833eb9ed7011 | 204 + .../.history/d1/4099978db56e001a173da96cce181ab0 | 57 - .../.history/d1/80a47018b66e001a173da96cce181ab0 | 32 - .../.history/d1/80e19f8eb56e001a173da96cce181ab0 | 36 - .../.history/d1/b0ee1ecc9071001a1f70833eb9ed7011 | 26 + .../.history/d1/c0e5658eb56e001a173da96cce181ab0 | 15 - .../.history/d1/f049ab6c8771001a1f70833eb9ed7011 | 62 + .../.history/d2/30128f398871001a1f70833eb9ed7011 | 15 + .../.history/d2/407aabacb06e001a18bbdaa1f718f3a2 | 26 - .../.history/d2/40a46bcb9071001a1f70833eb9ed7011 | 50 + .../.history/d2/6037d9509571001a1f70833eb9ed7011 | 15 + .../.history/d2/9050178eb56e001a173da96cce181ab0 | 22 - .../.history/d2/a052488b9571001a1f70833eb9ed7011 | 32 + .../.history/d2/a0da063af06c001a1f3dc7d0d6cfdd9d | 26 - .../.history/d2/a163608a9571001a1f70833eb9ed7011 | 463 ++ .../.history/d2/b0dd1f6d8771001a1f70833eb9ed7011 | 29 + .../.history/d2/f01dc3cc9071001a1f70833eb9ed7011 | 26 + .../.history/d3/2063219b8f71001a1f70833eb9ed7011 | 26 + .../.history/d3/20a9b5ab9071001a1f70833eb9ed7011 | 15 + .../.history/d3/30ab5f8b9571001a1f70833eb9ed7011 | 26 + .../.history/d3/712bff6b8771001a1f70833eb9ed7011 | 43 + .../.history/d3/902c4c18b66e001a173da96cce181ab0 | 15 - .../.history/d3/a0ee8f429b71001a1f70833eb9ed7011 | 32 + .../.history/d3/f035978b9571001a1f70833eb9ed7011 | 44 + .../.history/d4/10b95b6e8771001a1f70833eb9ed7011 | 32 + .../.history/d4/206a71429b71001a1f70833eb9ed7011 | 15 + .../.history/d4/50c3594f9571001a1f70833eb9ed7011 | 410 ++ .../.history/d4/600174aa9071001a1f70833eb9ed7011 | 104 + .../.history/d4/808683e78f71001a1f70833eb9ed7011 | 32 + .../.history/d4/80f14dac9071001a1f70833eb9ed7011 | 44 + .../.history/d4/90da0c8cb56e001a173da96cce181ab0 | 38 - .../.history/d4/c068b06e8771001a1f70833eb9ed7011 | 15 + .../.history/d5/003b3655d66c001a1f3dc7d0d6cfdd9d | 15 - .../.history/d5/406ce44e9571001a1f70833eb9ed7011 | 26 + .../.history/d5/407d26e88f71001a1f70833eb9ed7011 | 866 +++ .../.history/d5/818d183a8871001a1f70833eb9ed7011 | 22 + .../.history/d5/b0633b18b66e001a173da96cce181ab0 | 26 - .../.history/d5/c147143a8871001a1f70833eb9ed7011 | 15 + .../.history/d5/f02f3dcd9071001a1f70833eb9ed7011 | 188 + .../.history/d6/20e477cc9071001a1f70833eb9ed7011 | 22 + .../.history/d6/413cfdb48771001a1f70833eb9ed7011 | 22 + .../.history/d6/60115578db6c001a1f3dc7d0d6cfdd9d | 26 - .../.history/d6/807e0cb58771001a1f70833eb9ed7011 | 26 + .../.history/d6/80eec6cc9071001a1f70833eb9ed7011 | 26 + .../.history/d6/a0fa1aac9071001a1f70833eb9ed7011 | 15 + .../.history/d6/e0a9158b9571001a1f70833eb9ed7011 | 26 + .../.history/d6/e0ac6c18b66e001a173da96cce181ab0 | 32 - .../.history/d6/f04914e78f71001a1f70833eb9ed7011 | 26 + .../.history/d6/f0508f50126d001a1f3dc7d0d6cfdd9d | 15 - .../.history/d7/007b7cacb06e001a18bbdaa1f718f3a2 | 56 - .../.history/d7/10f96dcc9071001a1f70833eb9ed7011 | 44 + .../.history/d7/20ae43509571001a1f70833eb9ed7011 | 26 + .../.history/d7/30b6e64e9571001a1f70833eb9ed7011 | 15 + .../.history/d7/402b4aadb06e001a18bbdaa1f718f3a2 | 50 - .../.history/d7/809fc7998f71001a1f70833eb9ed7011 | 15 + .../.history/d7/d040989b8f71001a1f70833eb9ed7011 | 32 + .../.history/d7/e014919b8f71001a1f70833eb9ed7011 | 32 + .../.history/d7/e0e86218b66e001a173da96cce181ab0 | 22 - .../.history/d8/00f0eae68f71001a1f70833eb9ed7011 | 38 + .../.history/d8/201ba04f9571001a1f70833eb9ed7011 | 152 + .../.history/d8/206a3ae39a71001a1f70833eb9ed7011 | 26 + .../.history/d8/3007a59a8f71001a1f70833eb9ed7011 | 43 + .../.history/d8/60db94509571001a1f70833eb9ed7011 | 32 + .../.history/d8/700bd2509571001a1f70833eb9ed7011 | 15 + .../.history/d8/71dafa4e9571001a1f70833eb9ed7011 | 43 + .../.history/d8/71deaa9b8f71001a1f70833eb9ed7011 | 15 + .../.history/d8/805348cd9071001a1f70833eb9ed7011 | 50 + .../.history/d8/90cc066c8771001a1f70833eb9ed7011 | 38 + .../.history/d8/d0dd18e78f71001a1f70833eb9ed7011 | 15 + .../.history/d8/e0ea8c8db56e001a173da96cce181ab0 | 632 --- .../.history/d9/317e2e8a9571001a1f70833eb9ed7011 | 36 + .../.history/d9/40023d519571001a1f70833eb9ed7011 | 188 + .../.history/d9/40f5f2998f71001a1f70833eb9ed7011 | 62 + .../.history/d9/701491acb06e001a18bbdaa1f718f3a2 | 26 - .../.history/d9/70e4318b9571001a1f70833eb9ed7011 | 26 + .../.history/d9/904425aab06e001a18bbdaa1f718f3a2 | 38 - .../.history/d9/9073e0e78f71001a1f70833eb9ed7011 | 36 + .../.history/d9/90c6b08db56e001a173da96cce181ab0 | 15 - .../.history/d9/b1e3bb388871001a1f70833eb9ed7011 | 36 + .../.history/d9/c1a8ef398871001a1f70833eb9ed7011 | 15 + .../.history/d9/e18154519571001a1f70833eb9ed7011 | 22 + .../.history/da/10cf6518b66e001a173da96cce181ab0 | 32 - .../.history/da/2070a518b66e001a173da96cce181ab0 | 26 - .../.history/da/207cb2cc9071001a1f70833eb9ed7011 | 15 + .../.history/da/4011bbe78f71001a1f70833eb9ed7011 | 62 + .../.history/da/401f8fe78f71001a1f70833eb9ed7011 | 22 + .../.history/da/9028eeacb06e001a18bbdaa1f718f3a2 | 32 - .../.history/da/d02639509571001a1f70833eb9ed7011 | 38 + .../.history/da/d02f76509571001a1f70833eb9ed7011 | 26 + .../.history/da/f2d2edb48771001a1f70833eb9ed7011 | 26 + .../.history/db/409ee5e39a71001a1f70833eb9ed7011 | 26 + .../.history/db/50c13dcc9071001a1f70833eb9ed7011 | 15 + .../.history/db/602172e78f71001a1f70833eb9ed7011 | 32 + .../.history/db/90fae1a99071001a1f70833eb9ed7011 | 26 + .../.history/db/a0aca1509571001a1f70833eb9ed7011 | 22 + .../.history/db/a133b7398871001a1f70833eb9ed7011 | 15 + .../.history/db/c1a5df8a9571001a1f70833eb9ed7011 | 722 +++ .../.history/db/d016cbe78f71001a1f70833eb9ed7011 | 15 + .../.history/db/f0c3fe398871001a1f70833eb9ed7011 | 15 + .../.history/dc/007afc398871001a1f70833eb9ed7011 | 26 + .../.history/dc/1063fa17b66e001a173da96cce181ab0 | 632 --- .../.history/dc/40ea8fca9071001a1f70833eb9ed7011 | 38 + .../.history/dc/60e153cc9071001a1f70833eb9ed7011 | 26 + .../.history/dc/6180a5398871001a1f70833eb9ed7011 | 15 + .../.history/dc/70e39b398871001a1f70833eb9ed7011 | 38 + .../.history/dc/808c8be29a71001a1f70833eb9ed7011 | 152 + .../.history/dc/d01b0d3a8871001a1f70833eb9ed7011 | 15 + .../.history/dc/d0fc3e8eb56e001a173da96cce181ab0 | 22 - .../.history/dd/4117fb509571001a1f70833eb9ed7011 | 15 + .../.history/dd/41d1c9398871001a1f70833eb9ed7011 | 26 + .../.history/dd/50c8e3acb06e001a18bbdaa1f718f3a2 | 32 - .../.history/dd/70f0e2e19a71001a1f70833eb9ed7011 | 62 + .../.history/dd/806b06adb06e001a18bbdaa1f718f3a2 | 26 - .../.history/dd/c0d6113a8871001a1f70833eb9ed7011 | 26 + .../.history/dd/d070bce78f71001a1f70833eb9ed7011 | 57 + .../.history/dd/e08a84398871001a1f70833eb9ed7011 | 38 + .../.history/dd/f0041badb06e001a18bbdaa1f718f3a2 | 15 - .../.history/de/105de4b48771001a1f70833eb9ed7011 | 44 + .../.history/de/10968a8cb56e001a173da96cce181ab0 | 463 -- .../.history/de/2035e8acb06e001a18bbdaa1f718f3a2 | 22 - .../.history/de/20e3fa18b66e001a173da96cce181ab0 | 38 - .../.history/de/a0e1458b9571001a1f70833eb9ed7011 | 32 + .../.history/df/4063f76b8771001a1f70833eb9ed7011 | 29 + .../.history/df/500457429b71001a1f70833eb9ed7011 | 15 + .../.history/df/507edfe68f71001a1f70833eb9ed7011 | 15 + .../.history/df/70db65ab9071001a1f70833eb9ed7011 | 15 + .../.history/df/905829e78f71001a1f70833eb9ed7011 | 15 + .../.history/df/a0fb1fb48771001a1f70833eb9ed7011 | 463 ++ .../.history/df/d04342429b71001a1f70833eb9ed7011 | 15 + .../.history/df/f0a2f38a9571001a1f70833eb9ed7011 | 38 + .../.history/e/4074c9998f71001a1f70833eb9ed7011 | 26 + .../.history/e/50bf17398871001a1f70833eb9ed7011 | 57 + .../.history/e/70abf19b8f71001a1f70833eb9ed7011 | 36 + .../.history/e/d140989b8f71001a1f70833eb9ed7011 | 22 + .../.history/e0/00382baab06e001a18bbdaa1f718f3a2 | 44 - .../.history/e0/1027639b8f71001a1f70833eb9ed7011 | 15 + .../.history/e0/109f7ccc9071001a1f70833eb9ed7011 | 22 + .../.history/e0/4136376d8771001a1f70833eb9ed7011 | 26 + .../.history/e0/509b78e58f71001a1f70833eb9ed7011 | 26 + .../.history/e0/703c35668771001a1f70833eb9ed7011 | 777 +++ .../.history/e0/70df84acb06e001a18bbdaa1f718f3a2 | 38 - .../.history/e0/807206aa9071001a1f70833eb9ed7011 | 36 + .../.history/e0/a1f3776e8771001a1f70833eb9ed7011 | 22 + .../.history/e0/c01562ac9071001a1f70833eb9ed7011 | 56 + .../.history/e0/c146dcb48771001a1f70833eb9ed7011 | 26 + .../.history/e1/01e2679b8f71001a1f70833eb9ed7011 | 26 + .../.history/e1/40ac2b18b66e001a173da96cce181ab0 | 15 - .../.history/e1/61cf30b58771001a1f70833eb9ed7011 | 15 + .../.history/e1/70ecade39a71001a1f70833eb9ed7011 | 26 + .../.history/e1/b0339daab06e001a18bbdaa1f718f3a2 | 463 -- .../.history/e1/b082fea9b06e001a18bbdaa1f718f3a2 | 22 - .../.history/e1/c06e9318b66e001a173da96cce181ab0 | 22 - .../.history/e1/e01875e58f71001a1f70833eb9ed7011 | 32 + .../.history/e1/f07a116c8771001a1f70833eb9ed7011 | 44 + .../.history/e1/f0d9c3ab9071001a1f70833eb9ed7011 | 36 + .../.history/e2/00f6d518b66e001a173da96cce181ab0 | 15 - .../.history/e2/1079f18db56e001a173da96cce181ab0 | 15 - .../.history/e2/40b63cb58771001a1f70833eb9ed7011 | 50 + .../.history/e2/808c458eb56e001a173da96cce181ab0 | 15 - .../.history/e2/90ae49b58771001a1f70833eb9ed7011 | 15 + .../.history/e2/a0f74fadb06e001a18bbdaa1f718f3a2 | 44 - .../.history/e3/00d2a6429b71001a1f70833eb9ed7011 | 26 + .../.history/e3/2074228eb56e001a173da96cce181ab0 | 32 - .../.history/e3/2095a5ca9071001a1f70833eb9ed7011 | 38 + .../.history/e3/408bda998f71001a1f70833eb9ed7011 | 15 + .../.history/e3/506ff98a9571001a1f70833eb9ed7011 | 15 + .../.history/e3/b073c19b8f71001a1f70833eb9ed7011 | 62 + .../.history/e3/b0a48d429b71001a1f70833eb9ed7011 | 15 + .../.history/e3/b0f4a6ca9071001a1f70833eb9ed7011 | 29 + .../.history/e3/b196ad398871001a1f70833eb9ed7011 | 15 + .../.history/e3/d019c6429b71001a1f70833eb9ed7011 | 22 + .../.history/e3/f053928b9571001a1f70833eb9ed7011 | 50 + .../.history/e3/f0e9eaab9071001a1f70833eb9ed7011 | 22 + .../.history/e4/204c3fe39a71001a1f70833eb9ed7011 | 15 + .../.history/e4/3086ffb48771001a1f70833eb9ed7011 | 26 + .../.history/e4/5010f6b48771001a1f70833eb9ed7011 | 22 + .../.history/e4/50ec346d8771001a1f70833eb9ed7011 | 56 + .../.history/e4/60d12ee39a71001a1f70833eb9ed7011 | 50 + .../.history/e4/70f4599a8f71001a1f70833eb9ed7011 | 106 + .../.history/e4/817e0cb58771001a1f70833eb9ed7011 | 15 + .../.history/e4/90996d429b71001a1f70833eb9ed7011 | 44 + .../.history/e4/d0641a8b9571001a1f70833eb9ed7011 | 26 + .../.history/e5/018fba398871001a1f70833eb9ed7011 | 32 + .../.history/e5/314c5cb58771001a1f70833eb9ed7011 | 50 + .../.history/e5/502ffee39a71001a1f70833eb9ed7011 | 36 + .../.history/e5/70285eadb06e001a18bbdaa1f718f3a2 | 26 - .../.history/e5/9081b4e78f71001a1f70833eb9ed7011 | 15 + .../.history/e5/e00967429b71001a1f70833eb9ed7011 | 26 + .../.history/e6/704d43adb06e001a18bbdaa1f718f3a2 | 44 - .../.history/e6/b00eb8aab06e001a18bbdaa1f718f3a2 | 104 - .../.history/e6/b0651acd9071001a1f70833eb9ed7011 | 15 + .../.history/e6/b06c313a8871001a1f70833eb9ed7011 | 26 + .../.history/e6/b0a3e5e78f71001a1f70833eb9ed7011 | 50 + .../.history/e7/600ba39a8f71001a1f70833eb9ed7011 | 50 + .../.history/e7/808d183a8871001a1f70833eb9ed7011 | 32 + .../.history/e7/a058429b8f71001a1f70833eb9ed7011 | 26 + .../.history/e7/a07450429b71001a1f70833eb9ed7011 | 15 + .../.history/e7/d0aaafaa9071001a1f70833eb9ed7011 | 152 + .../.history/e8/502597509571001a1f70833eb9ed7011 | 22 + .../.history/e8/607c8e8eb56e001a173da96cce181ab0 | 44 - .../.history/e8/c0634badb06e001a18bbdaa1f718f3a2 | 43 - .../.history/e8/e0006517b66e001a173da96cce181ab0 | 50 - .../.history/e8/f01205aa9071001a1f70833eb9ed7011 | 44 + .../.history/e9/206c5e9b8f71001a1f70833eb9ed7011 | 26 + .../.history/e9/40cab4e39a71001a1f70833eb9ed7011 | 26 + .../.history/e9/a080c5388871001a1f70833eb9ed7011 | 26 + .../.history/e9/a0bc4a8eb56e001a173da96cce181ab0 | 15 - .../.history/e9/b029b5e19a71001a1f70833eb9ed7011 | 15 + .../.history/e9/b190deb48771001a1f70833eb9ed7011 | 26 + .../.history/e9/c01692e58f71001a1f70833eb9ed7011 | 29 + .../.history/e9/c0a078e29a71001a1f70833eb9ed7011 | 155 + .../.history/e9/f039a4429b71001a1f70833eb9ed7011 | 26 + .../.history/ea/00205218b66e001a173da96cce181ab0 | 15 - .../.history/ea/00a6a0e39a71001a1f70833eb9ed7011 | 32 + .../.history/ea/00d5eb509571001a1f70833eb9ed7011 | 57 + .../.history/ea/104851e68f71001a1f70833eb9ed7011 | 57 + .../.history/ea/20e479e39a71001a1f70833eb9ed7011 | 22 + .../.history/ea/307cb3429b71001a1f70833eb9ed7011 | 62 + .../.history/ea/309bbdb48771001a1f70833eb9ed7011 | 15 + .../.history/ea/31623e6d8771001a1f70833eb9ed7011 | 29 + .../.history/ea/402afe8a9571001a1f70833eb9ed7011 | 38 + .../.history/ea/70e99529c36e001a17dd93e105fd0cb6 | 79 - .../.history/ea/80ef0eb58771001a1f70833eb9ed7011 | 26 + .../.history/ea/b02a8917b66e001a173da96cce181ab0 | 170 - .../.history/ea/b0e7f08eb56e001a173da96cce181ab0 | 29 - .../.history/ea/c05b86ab9071001a1f70833eb9ed7011 | 29 + .../.history/ea/d0b4c7acb06e001a18bbdaa1f718f3a2 | 22 - .../.history/ea/d17ce8398871001a1f70833eb9ed7011 | 22 + .../.history/ea/e0fe59acb06e001a18bbdaa1f718f3a2 | 29 - .../.history/ea/f144ce9b8f71001a1f70833eb9ed7011 | 15 + .../.history/eb/0085329c8f71001a1f70833eb9ed7011 | 866 +++ .../.history/eb/308a4ecc9071001a1f70833eb9ed7011 | 15 + .../.history/eb/70187bcc9071001a1f70833eb9ed7011 | 32 + .../.history/eb/a0ef9eb48771001a1f70833eb9ed7011 | 57 + .../.history/eb/d04aaf8eb56e001a173da96cce181ab0 | 26 - .../.history/eb/d0e2ffa99071001a1f70833eb9ed7011 | 29 + .../.history/eb/e091cb6e8771001a1f70833eb9ed7011 | 36 + .../.history/eb/f065c46e8771001a1f70833eb9ed7011 | 50 + .../.history/ec/119426519571001a1f70833eb9ed7011 | 50 + .../.history/ec/216c5e9b8f71001a1f70833eb9ed7011 | 15 + .../.history/ec/405c37ac9071001a1f70833eb9ed7011 | 15 + .../.history/ec/414c9f8b9571001a1f70833eb9ed7011 | 15 + .../.history/ec/a00e1918b66e001a173da96cce181ab0 | 26 - .../.history/ec/e024e7e39a71001a1f70833eb9ed7011 | 15 + .../.history/ec/e04a12b58771001a1f70833eb9ed7011 | 15 + .../.history/ec/f0c8a1429b71001a1f70833eb9ed7011 | 26 + .../.history/ec/f0fcf718b66e001a173da96cce181ab0 | 43 - .../.history/ed/102335aab06e001a18bbdaa1f718f3a2 | 62 - .../.history/ed/107116adb06e001a18bbdaa1f718f3a2 | 26 - .../.history/ed/10d9f1a99071001a1f70833eb9ed7011 | 26 + .../.history/ed/504ba6e39a71001a1f70833eb9ed7011 | 22 + .../.history/ed/601e92b48771001a1f70833eb9ed7011 | 632 +++ .../.history/ed/704106cd9071001a1f70833eb9ed7011 | 43 + .../.history/ed/71ddccb48771001a1f70833eb9ed7011 | 26 + .../.history/ed/90ed6fab9071001a1f70833eb9ed7011 | 29 + .../.history/ed/a03d8a8b9571001a1f70833eb9ed7011 | 36 + .../.history/ed/b0b3fe18b66e001a173da96cce181ab0 | 32 - .../.history/ed/c06391e39a71001a1f70833eb9ed7011 | 32 + .../.history/ed/d086bb8b9571001a1f70833eb9ed7011 | 38 + .../.history/ed/e01e378cb56e001a173da96cce181ab0 | 85 - .../.history/ee/00998d8b9571001a1f70833eb9ed7011 | 44 + .../.history/ee/2079b98db56e001a173da96cce181ab0 | 15 - .../.history/ee/30671d8a9571001a1f70833eb9ed7011 | 29 + .../.history/ee/80591b8cb56e001a173da96cce181ab0 | 44 - .../.history/ee/a012cde78f71001a1f70833eb9ed7011 | 26 + .../.history/ee/b00f1a8eb56e001a173da96cce181ab0 | 32 - .../.history/ee/c07598ca9071001a1f70833eb9ed7011 | 43 + .../.history/ee/c165c8b38771001a1f70833eb9ed7011 | 15 + .../.history/ee/d0ffab18b66e001a173da96cce181ab0 | 26 - .../.history/ee/f0f68ce39a71001a1f70833eb9ed7011 | 32 + .../.history/ef/10b6609b8f71001a1f70833eb9ed7011 | 26 + .../.history/ef/2043196c8771001a1f70833eb9ed7011 | 62 + .../.history/ef/30c12118b66e001a173da96cce181ab0 | 15 - .../.history/ef/41ccd89b8f71001a1f70833eb9ed7011 | 15 + .../.history/ef/70d71b29c36e001a17dd93e105fd0cb6 | 354 -- .../.history/ef/9143163a8871001a1f70833eb9ed7011 | 15 + .../.history/ef/a19700b58771001a1f70833eb9ed7011 | 32 + .../.history/ef/c0124f18b66e001a173da96cce181ab0 | 15 - .../.history/ef/c0e13d509571001a1f70833eb9ed7011 | 38 + .../.history/ef/d0f5e38bb56e001a173da96cce181ab0 | 15 - .../.history/ef/f04c21aab06e001a18bbdaa1f718f3a2 | 29 - .../.history/ef/f0ea6a8a9571001a1f70833eb9ed7011 | 104 + .../.history/f/10660dac9071001a1f70833eb9ed7011 | 15 + .../.history/f/10b928b58771001a1f70833eb9ed7011 | 15 + .../.history/f/10ebd2429b71001a1f70833eb9ed7011 | 36 + .../.history/f/20d0f5a9b06e001a18bbdaa1f718f3a2 | 58 - .../.history/f/50122b429b71001a1f70833eb9ed7011 | 29 + .../.history/f/503d4418b66e001a173da96cce181ab0 | 26 - .../.history/f/7005d94f9571001a1f70833eb9ed7011 | 170 + .../.history/f/7008279b8f71001a1f70833eb9ed7011 | 29 + .../.history/f/90ee8ecc9071001a1f70833eb9ed7011 | 22 + .../.history/f/b03a0f9b8f71001a1f70833eb9ed7011 | 62 + .../.history/f/b0cd5318b66e001a173da96cce181ab0 | 26 - .../.history/f/c0781faa9071001a1f70833eb9ed7011 | 86 + .../.history/f/e0d3c1e19a71001a1f70833eb9ed7011 | 50 + .../.history/f0/00836d8a9571001a1f70833eb9ed7011 | 106 + .../.history/f0/109426519571001a1f70833eb9ed7011 | 56 + .../.history/f0/201986e39a71001a1f70833eb9ed7011 | 22 + .../.history/f0/4011ad18b66e001a173da96cce181ab0 | 15 - .../.history/f0/c02b3fcd9071001a1f70833eb9ed7011 | 204 + .../.history/f0/c07d1e519571001a1f70833eb9ed7011 | 44 + .../.history/f1/0000bd398871001a1f70833eb9ed7011 | 22 + .../.history/f1/0089ebb48771001a1f70833eb9ed7011 | 22 + .../.history/f1/00b7f0509571001a1f70833eb9ed7011 | 15 + .../.history/f1/00dbaacc9071001a1f70833eb9ed7011 | 22 + .../.history/f1/10f845509571001a1f70833eb9ed7011 | 15 + .../.history/f1/205360429b71001a1f70833eb9ed7011 | 22 + .../.history/f1/20eb63e39a71001a1f70833eb9ed7011 | 26 + .../.history/f1/7066b44f9571001a1f70833eb9ed7011 | 57 + .../.history/f1/7070a36e8771001a1f70833eb9ed7011 | 15 + .../.history/f1/7074bfcc9071001a1f70833eb9ed7011 | 26 + .../.history/f1/900c8acc9071001a1f70833eb9ed7011 | 22 + .../.history/f1/a04622398871001a1f70833eb9ed7011 | 155 + .../.history/f1/d03a17aab06e001a18bbdaa1f718f3a2 | 50 - .../.history/f2/20b9dcab9071001a1f70833eb9ed7011 | 32 + .../.history/f2/2148698b9571001a1f70833eb9ed7011 | 26 + .../.history/f2/607d958a9571001a1f70833eb9ed7011 | 57 + .../.history/f2/60fae4398871001a1f70833eb9ed7011 | 32 + .../.history/f2/70518e8a9571001a1f70833eb9ed7011 | 152 + .../.history/f2/a1a364509571001a1f70833eb9ed7011 | 15 + .../.history/f2/b0c939cc9071001a1f70833eb9ed7011 | 15 + .../.history/f2/c0c4f46e8771001a1f70833eb9ed7011 | 43 + .../.history/f2/d05e894f9571001a1f70833eb9ed7011 | 155 + .../.history/f2/e1a6896e8771001a1f70833eb9ed7011 | 26 + .../.history/f3/00299de78f71001a1f70833eb9ed7011 | 26 + .../.history/f3/600ab29b8f71001a1f70833eb9ed7011 | 15 + .../.history/f3/603ab6998f71001a1f70833eb9ed7011 | 211 + .../.history/f3/80c7c7429b71001a1f70833eb9ed7011 | 26 + .../.history/f4/0080138eb56e001a173da96cce181ab0 | 15 - .../.history/f4/304d2f419b71001a1f70833eb9ed7011 | 29 + .../.history/f4/50812b6e8771001a1f70833eb9ed7011 | 26 + .../.history/f4/50f5ba998f71001a1f70833eb9ed7011 | 58 + .../.history/f4/9034f6ab9071001a1f70833eb9ed7011 | 32 + .../.history/f4/903d72e68f71001a1f70833eb9ed7011 | 183 + .../.history/f4/a09346ab9071001a1f70833eb9ed7011 | 632 +++ .../.history/f4/a0bf8e8db56e001a173da96cce181ab0 | 722 --- .../.history/f4/b0cb8ee39a71001a1f70833eb9ed7011 | 22 + .../.history/f4/d0f6136d8771001a1f70833eb9ed7011 | 62 + .../.history/f4/e06c5ccc9071001a1f70833eb9ed7011 | 26 + .../.history/f4/f149ab6c8771001a1f70833eb9ed7011 | 57 + .../.history/f5/001ba88a9571001a1f70833eb9ed7011 | 170 + .../.history/f5/3039e5aab06e001a18bbdaa1f718f3a2 | 155 - .../.history/f5/404e20cc9071001a1f70833eb9ed7011 | 15 + .../.history/f5/707052429b71001a1f70833eb9ed7011 | 26 + .../.history/f5/80b1c5b48771001a1f70833eb9ed7011 | 26 + .../.history/f5/81ef416e8771001a1f70833eb9ed7011 | 15 + .../.history/f5/90a18316b66e001a173da96cce181ab0 | 50 - .../.history/f5/c047ba9b8f71001a1f70833eb9ed7011 | 26 + .../.history/f5/c0fe0dcc9071001a1f70833eb9ed7011 | 29 + .../.history/f6/4017fb509571001a1f70833eb9ed7011 | 26 + .../.history/f6/40d1c9398871001a1f70833eb9ed7011 | 36 + .../.history/f6/6095ff4e9571001a1f70833eb9ed7011 | 15 + .../.history/f6/6098ee16b66e001a173da96cce181ab0 | 62 - .../.history/f6/80f0ec9b8f71001a1f70833eb9ed7011 | 43 + .../.history/f6/b1dcde509571001a1f70833eb9ed7011 | 15 + .../.history/f6/f135978b9571001a1f70833eb9ed7011 | 36 + .../.history/f7/2048698b9571001a1f70833eb9ed7011 | 15 + .../.history/f7/40edce6e8771001a1f70833eb9ed7011 | 56 + .../.history/f7/618a788b9571001a1f70833eb9ed7011 | 22 + .../.history/f7/803bee6b8771001a1f70833eb9ed7011 | 15 + .../.history/f7/8040288eb56e001a173da96cce181ab0 | 22 - .../.history/f7/a04288419b71001a1f70833eb9ed7011 | 106 + .../.history/f7/a0755fb48771001a1f70833eb9ed7011 | 170 + .../.history/f7/b0882018b66e001a173da96cce181ab0 | 26 - .../.history/f7/d0d7e0ab9071001a1f70833eb9ed7011 | 32 + .../.history/f8/20e9986e8771001a1f70833eb9ed7011 | 26 + .../.history/f8/5000348eb56e001a173da96cce181ab0 | 32 - .../.history/f8/6019efa9b06e001a18bbdaa1f718f3a2 | 207 - .../.history/f8/60b1686e8771001a1f70833eb9ed7011 | 32 + .../.history/f8/7086c8ca9071001a1f70833eb9ed7011 | 85 + .../.history/f8/70adf3e78f71001a1f70833eb9ed7011 | 15 + .../.history/f8/9159226e8771001a1f70833eb9ed7011 | 15 + .../.history/f8/a0d70e4f9571001a1f70833eb9ed7011 | 44 + .../.history/f8/c04c80e39a71001a1f70833eb9ed7011 | 32 + .../.history/f8/d0b444429b71001a1f70833eb9ed7011 | 38 + .../.history/f8/e09184ac9071001a1f70833eb9ed7011 | 204 + .../.history/f9/309824e39a71001a1f70833eb9ed7011 | 29 + .../.history/f9/60a60a8eb56e001a173da96cce181ab0 | 32 - .../.history/f9/7029cd509571001a1f70833eb9ed7011 | 26 + .../.history/f9/706fb9e19a71001a1f70833eb9ed7011 | 38 + .../.history/f9/714ecfb48771001a1f70833eb9ed7011 | 26 + .../.history/f9/907fb1aa9071001a1f70833eb9ed7011 | 162 + .../.history/f9/90ae7c6e8771001a1f70833eb9ed7011 | 32 + .../.history/f9/b126418b9571001a1f70833eb9ed7011 | 22 + .../.history/f9/e0f09c9a8f71001a1f70833eb9ed7011 | 57 + .../.history/fa/20fe06519571001a1f70833eb9ed7011 | 15 + .../.history/fa/3071358cb56e001a173da96cce181ab0 | 86 - .../.history/fa/607be3e39a71001a1f70833eb9ed7011 | 22 + .../.history/fa/6099dee39a71001a1f70833eb9ed7011 | 26 + .../.history/fa/609a18aab06e001a18bbdaa1f718f3a2 | 43 - .../.history/fa/804965acb06e001a18bbdaa1f718f3a2 | 15 - .../.history/fa/b06f1b9b8f71001a1f70833eb9ed7011 | 26 + .../.history/fa/e0e6c8398871001a1f70833eb9ed7011 | 44 + .../.history/fb/2050e3cc9071001a1f70833eb9ed7011 | 15 + .../.history/fb/20e4f9e68f71001a1f70833eb9ed7011 | 50 + .../.history/fb/30d5dc998f71001a1f70833eb9ed7011 | 38 + .../.history/fc/00778e16b66e001a173da96cce181ab0 | 38 - .../.history/fc/200619cd9071001a1f70833eb9ed7011 | 26 + .../.history/fc/3046df998f71001a1f70833eb9ed7011 | 29 + .../.history/fc/30516697c16e001a17dd93e105fd0cb6 | 416 -- .../.history/fc/405be9b38771001a1f70833eb9ed7011 | 57 + .../.history/fc/409f17ac9071001a1f70833eb9ed7011 | 15 + .../.history/fc/70e2f118b66e001a173da96cce181ab0 | 50 - .../.history/fc/80bd29509571001a1f70833eb9ed7011 | 632 +++ .../.history/fc/904287cb9071001a1f70833eb9ed7011 | 170 + .../.history/fc/c0377cadb06e001a18bbdaa1f718f3a2 | 188 - .../.history/fc/e07471509571001a1f70833eb9ed7011 | 15 + .../.history/fc/e0f4b072126d001a1f3dc7d0d6cfdd9d | 15 - .../.history/fc/f0f175e78f71001a1f70833eb9ed7011 | 15 + .../.history/fd/104a5b429b71001a1f70833eb9ed7011 | 26 + .../.history/fd/302e946e8771001a1f70833eb9ed7011 | 15 + .../.history/fd/403cfdb48771001a1f70833eb9ed7011 | 32 + .../.history/fd/509fe78bb56e001a173da96cce181ab0 | 15 - .../.history/fd/60a452b48771001a1f70833eb9ed7011 | 43 + .../.history/fd/a02a4fe39a71001a1f70833eb9ed7011 | 15 + .../.history/fe/0007fce68f71001a1f70833eb9ed7011 | 26 + .../.history/fe/302ec6acb06e001a18bbdaa1f718f3a2 | 32 - .../.history/fe/401b69e39a71001a1f70833eb9ed7011 | 15 + .../.history/fe/50ab1dcb9071001a1f70833eb9ed7011 | 104 + .../.history/fe/50cd09aab06e001a18bbdaa1f718f3a2 | 15 - .../.history/fe/5180118a9571001a1f70833eb9ed7011 | 32 + .../.history/fe/703aef9b8f71001a1f70833eb9ed7011 | 44 + .../.history/fe/808008cc9071001a1f70833eb9ed7011 | 29 + .../.history/fe/80bc2b398871001a1f70833eb9ed7011 | 152 + .../.history/fe/c0105b9b8f71001a1f70833eb9ed7011 | 26 + .../.history/fe/c0f58cacb06e001a18bbdaa1f718f3a2 | 15 - .../.history/fe/f073d74e9571001a1f70833eb9ed7011 | 211 + .../.history/fe/f1c3fe398871001a1f70833eb9ed7011 | 26 + .../.history/ff/00adc1429b71001a1f70833eb9ed7011 | 26 + .../.history/ff/018ac99b8f71001a1f70833eb9ed7011 | 26 + .../.history/ff/10f80bcb9071001a1f70833eb9ed7011 | 410 ++ .../.history/ff/20c219ac9071001a1f70833eb9ed7011 | 26 + .../.history/ff/409143ac9071001a1f70833eb9ed7011 | 15 + .../.history/ff/608e1f9b8f71001a1f70833eb9ed7011 | 15 + .../.history/ff/803610aa9071001a1f70833eb9ed7011 | 62 + .../.history/ff/d0054a6e8771001a1f70833eb9ed7011 | 44 + .../.history/ff/d01e67ac9071001a1f70833eb9ed7011 | 15 + .../.history/ff/d0764c6e8771001a1f70833eb9ed7011 | 26 + .../.history/ff/e051789a8f71001a1f70833eb9ed7011 | 155 + .../.history/ff/f0d6c66e8771001a1f70833eb9ed7011 | 43 + .../Embedded/.indexes/33/4a/f5/26/history.index | Bin 2642 -> 3026 bytes .../Embedded/.indexes/33/4a/f5/34/history.index | Bin 2674 -> 3058 bytes .../Embedded/.indexes/33/4a/f5/3f/history.index | Bin 2668 -> 3052 bytes .../Embedded/.indexes/33/4a/f5/65/history.index | Bin 2648 -> 3032 bytes .../Embedded/.indexes/33/4a/f5/8/history.index | Bin 2654 -> 3038 bytes .../Embedded/.indexes/33/4a/f5/8c/history.index | Bin 2660 -> 3044 bytes .../Embedded/.indexes/33/4a/f5/b/history.index | Bin 2650 -> 3034 bytes .../Embedded/.indexes/33/4a/f5/b2/history.index | Bin 2664 -> 3048 bytes .../Embedded/.indexes/33/4a/f5/cb/history.index | Bin 2654 -> 3038 bytes .../Embedded/.indexes/33/4a/f5/ce/history.index | Bin 2656 -> 3040 bytes .../Embedded/.indexes/33/4a/f5/e5/history.index | Bin 2648 -> 3032 bytes .../Embedded/.indexes/33/4a/f5/f9/history.index | Bin 2664 -> 3048 bytes .../Embedded/.indexes/33/4a/f5/fe/history.index | Bin 2658 -> 3042 bytes .../Embedded/.indexes/33/4a/history.index | Bin 2628 -> 3012 bytes .../Embedded/.indexes/33/99/36/history.index | Bin 2644 -> 3028 bytes .../Embedded/.indexes/33/99/50/history.index | Bin 2644 -> 3028 bytes .../Embedded/.indexes/33/99/8c/history.index | Bin 2640 -> 3024 bytes .../Embedded/.indexes/33/99/98/history.index | Bin 2624 -> 3008 bytes .../Embedded/.indexes/33/99/aa/history.index | Bin 2632 -> 3016 bytes .../Embedded/.indexes/33/99/c3/history.index | Bin 2632 -> 3016 bytes .../Embedded/.indexes/33/99/c8/history.index | Bin 2632 -> 3016 bytes .../Embedded/.indexes/33/99/d6/history.index | Bin 5249 -> 6017 bytes .../Embedded/.indexes/33/99/fa/history.index | Bin 2628 -> 3012 bytes .../Embedded/.indexes/33/9d/c0/history.index | Bin 2658 -> 3042 bytes .../Embedded/.indexes/33/9d/cb/history.index | Bin 2646 -> 3030 bytes .../Embedded/.indexes/33/b/16/history.index | Bin 2634 -> 3018 bytes .../Embedded/.indexes/33/b/37/history.index | Bin 2630 -> 3014 bytes .../Embedded/.indexes/33/b/4a/history.index | Bin 2650 -> 3034 bytes .../Embedded/.indexes/33/b/4d/history.index | Bin 2632 -> 3016 bytes .../Embedded/.indexes/33/b/5f/history.index | Bin 2636 -> 3020 bytes .../Embedded/.indexes/33/b/c4/history.index | Bin 2640 -> 3024 bytes .../Embedded/.indexes/33/b/cc/history.index | Bin 2628 -> 3012 bytes .../Embedded/.indexes/33/d5/1a/history.index | Bin 2642 -> 3026 bytes .../Embedded/.indexes/33/d5/23/a2/51/history.index | Bin 982 -> 1510 bytes .../Embedded/.indexes/33/d5/23/a2/65/history.index | Bin 2238 -> 2766 bytes .../Embedded/.indexes/33/d5/23/a2/73/history.index | Bin 2226 -> 2754 bytes .../Embedded/.indexes/33/d5/23/a2/history.index | Bin 2602 -> 3034 bytes .../Embedded/.indexes/33/d5/23/b5/history.index | Bin 4574 -> 3038 bytes .../Embedded/.indexes/33/d5/23/history.index | Bin 2636 -> 3020 bytes .../Embedded/.indexes/33/d5/24/6b/history.index | Bin 2658 -> 3042 bytes .../Embedded/.indexes/33/d5/24/a/history.index | Bin 2646 -> 3030 bytes .../Embedded/.indexes/33/d5/24/de/b8/history.index | Bin 2658 -> 3042 bytes .../Embedded/.indexes/33/d5/24/de/history.index | Bin 2644 -> 3028 bytes .../Embedded/.indexes/33/d5/24/e9/history.index | Bin 2654 -> 3038 bytes .../Embedded/.indexes/33/d5/24/history.index | Bin 2626 -> 3010 bytes .../Embedded/.indexes/33/d5/42/history.index | Bin 2630 -> 3014 bytes .../Embedded/.indexes/33/d5/43/history.index | Bin 2630 -> 3014 bytes .../Embedded/.indexes/33/d5/70/86/history.index | Bin 2654 -> 3038 bytes .../Embedded/.indexes/33/d5/70/history.index | Bin 2642 -> 3026 bytes .../Embedded/.indexes/33/d5/83/history.index | Bin 2644 -> 3028 bytes .../Embedded/.indexes/33/d5/8c/history.index | Bin 2624 -> 3008 bytes .../Embedded/.indexes/33/d5/91/53/0/history.index | Bin 2684 -> 3068 bytes .../Embedded/.indexes/33/d5/91/53/29/history.index | Bin 2698 -> 3082 bytes .../Embedded/.indexes/33/d5/91/53/51/history.index | Bin 2700 -> 3084 bytes .../Embedded/.indexes/33/d5/91/53/7e/history.index | Bin 2722 -> 3106 bytes .../Embedded/.indexes/33/d5/91/53/87/history.index | Bin 2706 -> 3090 bytes .../Embedded/.indexes/33/d5/91/53/94/history.index | Bin 2712 -> 3096 bytes .../Embedded/.indexes/33/d5/91/53/96/history.index | Bin 2700 -> 3084 bytes .../Embedded/.indexes/33/d5/91/53/bd/history.index | Bin 2706 -> 3090 bytes .../Embedded/.indexes/33/d5/91/53/history.index | Bin 2670 -> 3054 bytes .../Embedded/.indexes/33/d5/91/66/0/history.index | Bin 2696 -> 3080 bytes .../Embedded/.indexes/33/d5/91/66/67/history.index | Bin 2700 -> 3084 bytes .../Embedded/.indexes/33/d5/91/66/history.index | Bin 5337 -> 6105 bytes .../Embedded/.indexes/33/d5/91/8f/history.index | Bin 2668 -> 3052 bytes .../Embedded/.indexes/33/d5/91/9b/72/history.index | Bin 2688 -> 3072 bytes .../Embedded/.indexes/33/d5/91/9b/history.index | Bin 2670 -> 3054 bytes .../Embedded/.indexes/33/d5/91/af/history.index | Bin 2670 -> 3054 bytes .../Embedded/.indexes/33/d5/91/c1/history.index | Bin 2688 -> 3072 bytes .../Embedded/.indexes/33/d5/91/f/0/history.index | Bin 2686 -> 3070 bytes .../.indexes/33/d5/91/f/67/aa/history.index | Bin 2706 -> 3090 bytes .../Embedded/.indexes/33/d5/91/f/67/history.index | Bin 2690 -> 3074 bytes .../Embedded/.indexes/33/d5/91/f/6d/history.index | Bin 2684 -> 3068 bytes .../Embedded/.indexes/33/d5/91/f/80/history.index | Bin 2680 -> 3064 bytes .../Embedded/.indexes/33/d5/91/f/f3/history.index | Bin 2680 -> 3064 bytes .../Embedded/.indexes/33/d5/91/f/history.index | Bin 2672 -> 3056 bytes .../Embedded/.indexes/33/d5/91/history.index | Bin 2652 -> 3036 bytes .../Embedded/.indexes/33/d5/b1/history.index | Bin 2636 -> 3020 bytes .../Embedded/.indexes/33/d5/c2/3f/history.index | Bin 2648 -> 3032 bytes .../Embedded/.indexes/33/d5/c2/f2/history.index | Bin 2660 -> 3044 bytes .../Embedded/.indexes/33/d5/c2/history.index | Bin 2634 -> 3018 bytes .../Embedded/.indexes/33/d5/e5/history.index | Bin 2652 -> 3036 bytes .../Embedded/.indexes/33/d5/fd/history.index | Bin 2630 -> 3014 bytes .../.projects/Embedded/.indexes/33/history.index | Bin 5517 -> 6261 bytes .../Embedded/.indexes/99/50/history.index | Bin 0 -> 138 bytes .../Embedded/.indexes/d5/23/a2/51/history.index | Bin 263 -> 170 bytes .../Embedded/.indexes/d5/23/a2/65/history.index | Bin 944 -> 800 bytes .../Embedded/.indexes/d5/23/a2/73/history.index | Bin 529 -> 433 bytes .../Embedded/.indexes/d5/23/a2/a8/history.index | Bin 1168 -> 953 bytes .../Embedded/.indexes/d5/23/a2/history.index | Bin 830 -> 806 bytes .../Embedded/.indexes/d5/23/b5/history.index | Bin 1055 -> 1079 bytes .../Embedded/.indexes/d5/23/b5/properties.index | Bin 0 -> 156 bytes .../.projects/Embedded/.markers | Bin 92493 -> 73320 bytes .../.projects/Embedded/.markers.snap | Bin 1465422 -> 185664 bytes .../.projects/Embedded/.syncinfo.snap | Bin 496 -> 96 bytes .../.projects/RemoteSystemsTempFiles/.markers.snap | Bin 496 -> 96 bytes .../RemoteSystemsTempFiles/.syncinfo.snap | Bin 496 -> 96 bytes .../org.eclipse.core.resources/.root/.markers.snap | Bin 496 -> 96 bytes .../org.eclipse.core.resources/.root/53.tree | Bin 198213 -> 0 bytes .../org.eclipse.core.resources/.root/54.tree | Bin 0 -> 208414 bytes .../.safetable/org.eclipse.core.resources | Bin 9514 -> 2389 bytes .../.plugins/org.eclipse.core.resources/53.snap | Bin 773039 -> 0 bytes .../.plugins/org.eclipse.core.resources/54.snap | Bin 0 -> 62766 bytes .../org.eclipse.cdt.managedbuilder.core.prefs | 4 +- .../org.eclipse.e4.workbench/workbench.xmi | 5772 ++++++++++---------- .../org.eclipse.search/dialog_settings.xml | 24 +- Software/.metadata/version.ini | 2 +- .../Embedded/Modules/Stubs_Handler/Progress.c | 45 +- 2601 files changed, 112327 insertions(+), 36444 deletions(-) create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/005ea9e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/30e3219c8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/408dc7f0bf6e001a17dd93e105fd0cb6 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/409dba419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/619caa6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/a008366e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/c0d8988a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/00b349419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/204988ca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/204d019a8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/20aa1fabb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/60371317b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/81f5dd398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/a0ddb218b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/b093bee78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/d0618e6e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/d09a2a18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/e0bed4998f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/60aba18db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/a09212cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/c19f589b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/d0459fac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/201df859086d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/20d8f6cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/30bc16cd9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/607910e78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/60a519adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/712a223a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/b007b0398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/f0d1a7e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/10103badb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/101345e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/30168ae78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/30eeb0ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/30f89bca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/4014b6429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/503baa398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/7072eee68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/70852eb58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/70cf738b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/a063608a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/b054be388871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/d009399b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/d02c3bac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/f01a51ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/f01f2f6d8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/f08d9c419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/11b928b58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/308ace1d146d001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/40e7078eb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/702715240d6d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/909724ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/91220b8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/a0af1ee49a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/c02d64ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/d045756c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/d073519b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/e0055a8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/e170d59b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/10036e8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/205c91398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/40e6234f9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/40fa9b18b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/60387518b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/7063b8e58f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/70ba9facb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/80a3568eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/a094a8ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/a0c15f509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/c0728d419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/d0d486398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/f1ae2c6d8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/001425419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/00c27f429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/3023368eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/4054463a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/406c1bcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/409699e29a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/40b7d8e19a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/40efe28cb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/904dd3acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/e01982398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/00a57fab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/50d3b7cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/60360f8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/605003cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/70ceb2e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/80439518b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/c000e3e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/d0fb5a4f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/f1d9528b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/00954f509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/102dd48db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/200834419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/209ee4e19a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/20fb48f60a6d001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/307e18abb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/40e83d10086d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/40ef99e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/50931de39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/a03823e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/d085253a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/213d41509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/304302519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/3058c0509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/30f14f3a8871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/40f297acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/60c24db48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/813df14e9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/a03a479b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/a0f6038b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/e0a088e58f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/f0546dabb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/20ad45398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/40a6f8509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/61ecb69b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/c037ed398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/d0321f29c36e001a17dd93e105fd0cb6 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/1081ba429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/201a77e29a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/60495cac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/707228adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/91c33a6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/f0598c9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/f0d811e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/10182c8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/10cee6b48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/30402620f06c001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/70563818b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/902727b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/90ea21429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/a033b7398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/a0d51f398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/a1aca1509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/c0650f3a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/d039c1b38771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/d0810eadb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/21ad45398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/302abbb48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/40afb8a1e46c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/5060359b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/60b4f48a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/704f13439b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/903608e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/90b9bb429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/a0989aca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/b13840b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/c092dc509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/e02edc4e9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/003087e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/203d41509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/304c7a36d76e001a1c4ce2378ee7c6e4 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/5033ed8db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/8185cc388871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/902d49f6db6c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/90a4258a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/a05185cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/a0abf8e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/b062a8ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/c1c6ea398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/d03273e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/d0e4539b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/008b20429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/107800adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/619f368b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/a07246e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/a1e1458b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/c045cd429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/e08831398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/f0703e18b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/f089a218b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/10d5bcab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/9099079b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/90a699e78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/c0394129c36e001a17dd93e105fd0cb6 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/d0f058b58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/f01261b7c06e001a17dd93e105fd0cb6 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/f059bbe39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/30c5df4c0c6d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/41cfd36e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/50e9388b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/515a3b8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/51bedfb38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/51f22d6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/70549e398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/80cc27e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/905dfaacb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/a0dc988eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/00dd7fe78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/10787d429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/20129acc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/205a9b6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/20dcfe998f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/80d520aaf46c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/a0f3776e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/b1e2709b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/c0b85d18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/e050b4cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/e0abd9ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/304cd7a99071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/30fc84ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/32fdd0398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/703fe0398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/d0622e419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/e0f933398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/0018e9b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/20138de29a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/3057ce429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/51fef68a9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/80cdd28db56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/b0535cadb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/b09b5aac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/e05d9a16b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/101d48b48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/10508f18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/110bceb38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/114be58a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/2039338a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/302e61b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/408afc2a7471001a1c4ce2378ee7c6e4 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/607774429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/702995e29a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/70600b6c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/802651519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/90a7daa99071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/b011838b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/b0f0fb6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/c0a41ccc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/c0d9b26e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/d0e919e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e0a6896e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/f04055cc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/f0521aabb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/50fcd3e19a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/609cdcacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/a052b9ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/c0130fac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/c0a96f8eb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/d018e78db56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/1086d48eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/2029d8398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/503f9718b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/60d989e58f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/70e0ace78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/9059226e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/b0dc60acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/e07c05e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/f043f0b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/00abbf6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/10af75aa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/30363cb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/8067d1388871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/9075fc8db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/a0cc878b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/c0e73fac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/d001d68db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/d04434509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/d1054a6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/d1764c6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/e035ffe29a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/f0a853429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/40006cacb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/40369218b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/40db9c8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/506894b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/90b813e88f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/a02ca0cc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/a0322f82f56c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/a0db6de78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/a158429b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/b08b33ac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/c05d528eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/d0cc0dcb9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/002da7b48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/10bf158db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/30fdd0398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/506f9b16b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/70b54ccc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/a0f0e2429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/b011b3e29a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/e0b48f8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/0012f0b38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/109ae5cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/10e90f4f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/2101e4998f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/405c2d429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/40cfd36e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/5010296e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/50d120adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/70444ce39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/8060fdab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/907e4f8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/a180c5388871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/b03395ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/b06c1d6d8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/c08cabe19a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/c0b2acacb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/f0601718b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/0115174f9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/800abaaab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/803df14e9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/a07e88ab9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/b075b518b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/100b6ae78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/80a276da6d6e001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/b01cfdacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/d01ab8509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/0008278eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/2001e4998f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/30b790e58f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40626fe78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40ab57e29a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40c85fcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/50457d8b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/50c43d8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/6074ddb38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/a0c4dce39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/e013b3b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/e0605de78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/305cfea99071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/80187c429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/a0608dab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/b01e96e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/b0cfc3e19a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/e17471509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/f047c96e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/107193429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/402f36e49a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/50417916b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/50dec9e78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/6038ec1ed66c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/b04de1509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/b0a924429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/e0b750419b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/f06ce08eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/203c4f429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/3073109b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/5010e2ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/506d189c8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/50fe67ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/607142cb9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/608682e58f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/8085cc388871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/90f0e1cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/a09700b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/b07f71e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/d061d6a99071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/d0ea41419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/10c0f5509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/2036d98db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/205a68b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/30e910519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/5042a0429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/700749b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/70cc96429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/d12639509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/d12f76509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/207b228b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/30e5a416b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/401d1b8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/608511e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/b07f6fcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/c04cab398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/c0f634e49a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/d07164429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/1020a6cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/311c628b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/a03d74acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/b009d8e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/d0d51c8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/f0ae2c6d8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/0028758eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/20a2c2509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/4077e4429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/80b6ea18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/9043163a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/a0a364509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/b0f9b0e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/c0402a3a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/10c9ca8b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/4096538eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/803d28cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/80f5dd398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/90d909439b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/b0415f429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/c02e569b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/c0f4c5b38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/d07ce8398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/e01d7de78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/f0d9528b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/1051dea99071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/402545f3ef6c001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/503ad78db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/804e128b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/90bc09ac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/a0cd4529c36e001a17dd93e105fd0cb6 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/b0c7a2acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/d0cb55429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/d186bb8b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/00eed1acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/217b228b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/3187dd9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/5063d3388871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/603350b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/707070b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/72e39b398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/80b63e419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/90c03f9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/a08531e29a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/403c62acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/702bb88b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/810d0ab58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/a055f959086d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/c05117e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/e029c7aab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/f00b4be39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/f02c448eb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/002f5facb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/01244d509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/0137d5b38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/21a2c2509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/51cb3d8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/a1755fb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/c061054f9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/e0e7d78bb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/f05dd318b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/0032cc18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/00d2efe68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/1006d3e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/2042e1aa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/60de708a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/7003bfe39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/706cac419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/70c363ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/b082858b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/f0b5d09b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/10fe47ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/50ad439a8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/50d298ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/607bb49b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/6081393a066d001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/60914c8eb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/702447aab06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/70281618b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/804c26419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/b010f9429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/c09cd2e19a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/00599316b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/301048429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/30e09be29a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/7004db388871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70accbacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/a0d2819b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b005c7f9076d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b0660de39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b078b2398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/c038de388871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/20471a18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/406fb6b48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/6081dd16b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/60bf1121f56c001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/c02a99acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/c08316439b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/c0b696cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/d04336398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/20ce9aab9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/50f37918b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/60fb7a8b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/90269bacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/a0617f9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/c03fdeab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/d047afcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/d0b535419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/d0dcb6e58f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/e037d2e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/1014a7e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/1064f9e58f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/10e16e16b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/208d04519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/608ae9ab9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/b0262b8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/c0b3d4e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/c1567e8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/d1641a8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/e14a12b58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/006ec218b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/302415439b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/409dbb509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/4154463a8871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/5041b7200b6d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/6054724f9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/7053cb8db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/801f2dcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/806c0d8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/a03170429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/a03cf4398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/a0665c6c8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/a0f61dc40a6d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/d0d6e5429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/e026c7ca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/e0faeae78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/100bceb38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/104be58a9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/50674109f56c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/818eae8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/a0c3fae58f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/c0878616b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/d0c7ac2bdc6c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/e080b8ca9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f0050c8eb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f02c44acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f062f8e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f1598c9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/00591fcb9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/10149918b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/109425429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/2068b89a8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/209fe300d66c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/40b3da429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/705941429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/800d0ab58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/b03142ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/b0c4a4e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/b1fb2e3a8871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d0267316b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/f09784e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/00ed26e49a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/306b2a419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/403c306e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/601446429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/609ae66b8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/b02b40509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/c1402a3a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/008a78e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/30f213cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/60119baa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/80580c3a8871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/80a21d18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/80e5c2429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/b017ace39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/b0f66d16b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/c0f4e1e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/c1f4c5b38771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/d034b818b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/201ed7acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/20f935cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/3012a5ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/30b8a9429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/70ee80e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/8084c76c8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/a0f6a516b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/b00e409b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/b0e3bb388871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/c0b1186d8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/c14cab398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/10dbfc6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/10e387509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/6076dbe19a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/609f64cb9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/60ae6d9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/704ecfb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/709b79e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/7129cd509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/807dc4cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/90436be78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/90dce6a99071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/90de23adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/a0e9208a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/b01c0a4f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/b0dfdbe78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/d10517b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/10d40ae78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/20bb2fac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/31e910519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/501b68429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/50ee36419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/70208f419b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/70b508adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/70cce76e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/80baeeab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/904c533a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/90f54b9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/a05c15cd9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/a09d759b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/e085939b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/0068a08cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/105958cd9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/806888e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/80daf9cb9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/9133238a9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/00db1e18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/201517429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/4142cc398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/509c58cc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/602e1e8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/8013d9398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/80d0cde39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/9090816e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/a09467e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/d0b438398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/f0a0129c8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/31e3219c8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/5066bd998f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/7052a86e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/908d2718b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/90cdd1e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/a0a7e96b8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/004a5acc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/30561fc40a6d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/50e9a9ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/60ae9ce39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/71518e8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/9048b9429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/905205b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/c138de388871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/d05117519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/d098ed6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/d0c4059b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/f040d7e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/107285509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/40a84a429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/40ecd5e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/5057af6e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/50e0e58db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/a03f45519571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/a0dc278cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b0c720519571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/e0661f8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/f06285ca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/112a2bb58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/401a48ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/802e2c509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/90ca246e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/90cac7388871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/c01f4fe29a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/d0d5068eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/e0d1dfe39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/208d21b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/30d10d439b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/4052f3398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/50cb3d8b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/6009c88bb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/70e57dadb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/e09694acb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/2005028cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/2048c4388871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/20cd66cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/3060d4e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/309d04aab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/80d2afe19a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/908ba3ac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/90b20c18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/910d4d8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/9116e5388871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/c0d88359cf6e001a1c4ce2378ee7c6e4 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/10de72acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/11926b8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/200a91ab9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/4046b918b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/8022c8b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/80f6ce388871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/a012968db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/c0348de58f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/c0fa238eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/00a69ecc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/218d21b58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/5030a98eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/a00a38429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/e0d0b5509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/e15fb3509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/f1d2edb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/60c13e429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/80f3309b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/c0567e8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/c07297ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/d11ad5b48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/f0a4308eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/f0f0d4ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/f192cd998f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/0198f7398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/10cb4de39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/10f030cc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/607442abb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/607ac2ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/c0e68de78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/d0e402e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/d11b0d3a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/e0d6ad429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/20a153adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/309f966e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/402e0c519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/6048b7ca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/704fdacc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/70ffd28eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/804d21aa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/e038138b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/10926b8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/20fe566e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/50c8f9a99071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/8193cab48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/d0aa99adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/00a8d7b38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/1056e6ab9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/707a038eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/709acf509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/a024108eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/a0aa57ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/103f14e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/405ed16e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/516d189c8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/708133e29a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/8054f58eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/80b54d429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/913d47b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/a0de31e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/d0a6f3acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/e004c4398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/001e0de78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/30a7dae78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/40add5388871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/40e0b8b48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/40e38a18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/41cbfab48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/50131058f46c001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/f0b2048eb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/004d80e0d56c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/30b0a6e58f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/40d75e509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/5110296e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/70987c509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/70e09e18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/a05107e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/a0deb96e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/b138026c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/e1d90fb58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/00bca4b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/00fbcb9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/01e8ee8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/102a2bb58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/3044bbe19a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/40b9fb8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/419b008b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/60c2b28db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/b0a59cb48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/d03bb21e066d001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/4028be18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/40399b429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/606ddfaa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/70ddccb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/80e84fe68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/b0c73db58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/d012dc429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/d0ae20d60d6d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/e0ffd29b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/307376429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/702103abb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/b05748e49a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/201c1fb58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/2094f7ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/30ec0de88f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/40755ae39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/90c307b58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/e0a7ac8db56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/f07ba58db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/f084a8e58f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/f0e963acb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/1076ad8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/1098659b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/10bc08e88f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/20b38518b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/40364b3a8871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/405e03adb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/60823f18b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/80a5a9acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/b019fdcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/b0ce13ac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/c04ae78eb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/d0087816b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/e09f15cc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/00c0afacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/100091429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/10d830e49a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/10e0dba99071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/312abbb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/603eccab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/61fb7a8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/b0152a9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/d0279a429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/f0a4ae509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/1002744f9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/30610e8cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/80dfca509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/a0c971cc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/a0e6a929c36e001a17dd93e105fd0cb6 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/00db0b8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/00f4276d8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/206b29cb9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/20d6ee8cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/30eb62429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/606ff1e19a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/607f50509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/80444c519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/d09f7a398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/f043558eb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/2088efacb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/309c3c18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/400f1f439b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/4092c4998f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/508c6a429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/50fef68a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/807e3f6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/a027226d8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/b03c0318b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/b05281ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/d27619b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/f09791ca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/f0e7abb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/0019dab38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/0098f7398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/00f490e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/11e387509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/20fa19e88f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/314302519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/5077ac429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/61de708a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/708c949a8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/8082e56e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/80a740cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/9073efe19a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/c0300f439b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/c058d1a99071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/c0bd3cadb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/e0bf9c429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/f04741e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/20a6c5f9076d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/215a68b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/4000f3ab9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/50ee7116b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/605cc7ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/b09d6ce39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c039a2ca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/e114919b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/f0247faa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/f0b750cd9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/005608398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/603d98cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/619310398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/9067c3b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/a02fb79a8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/c06d08aab06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/e009eaacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/0039c4e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/008caa8a9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/00ffe98db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/10d26e429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/21d7668b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/31363cb48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/4098a6acb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/508a9a8eb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/6009398eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/a02d13e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/b025b7429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/b0b7929a8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/e07ee1b8f36c001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/e0d81f38f56c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/10edd2b38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/114826b58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/40ad648eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/70dafa4e9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/70deaa9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/710bd2509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/807409e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/a143849b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/b026418b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/b0911729c36e001a17dd93e105fd0cb6 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/c041c08b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/c09f589b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/d0332daab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/d07619b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/e0dd97429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/e0e573509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/f0f346cd9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/10c41faaf46c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/70fa81e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/71e4318b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/8093cab48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/b07ff96e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/f09bf38db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/f1a0129c8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/109d29cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/20d7668b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/4018a5e78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/40d0f68db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/50f682429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/600c938a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/60f051419b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/a05bfe8bb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/d0bd04adb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/f08e3918b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/1183a79b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/4024a3c6f16c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/607226e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/8061ade19a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/908947519571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/a065de4c0c6d001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/a0c2fb17b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/a10803b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/d00062429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/f07ed7429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/f0ed86429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/302973cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/60226b6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/71e39b398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/a13262509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/a1bdc39b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/b0c2cf1d146d001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/c0887aa9076d001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/e0b78b16b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/f0df7be39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/00920b519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/306c8c429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/609caa6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/b09a28e49a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/d0da0e58f46c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/f0448aca9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/f0adfca9b06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/00622e8b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/205b7616b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/402037429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/40c993ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/80971be39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/9040068b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/a02c739b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/b04a63cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/e06b6bcd9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/e0f7cc6b8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/0036d0ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/301dc4aa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/602e348b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/60fb326e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/702bff6b8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/90268edb9a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/d0f6273a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/00bb2f9b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/00d1f018b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/110529519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/90343d6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/913e259c8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/b036c3388871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/e0294f9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/f092cd998f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/007c5029c36e001a17dd93e105fd0cb6 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/306869acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/404221e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/40f00ae68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/60b135b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/60f1a7398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/70b91f3a8871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/a05a4b080d6d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/b01f589a8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/c137ed398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/d03cdbacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/d0a9d2b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/e0e22e429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/f07a826e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/f0d2edb48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/30065518b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/309cc8cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/60f98f509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/80f35dcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/90b0189b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/a08f4218b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/c05cf08cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/00244d509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/0037d5b38771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/20d5fd8db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/4042cc398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/405a5d8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/501789cb9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/50a0fecc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/b0dcde509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/c0d036aab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/e02c03ac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/e08cf58cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/11a7298b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/300d9e9b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/504ce08bb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/81dfca509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/e00dd6e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/102a5e6e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/109a5d82c06e001a17dd93e105fd0cb6 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/202070e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/30afef8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/31fdd0398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/407cfeacb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/80ebf618b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c0c6ea398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/d0db45e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/006857e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/00a8ba4f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/01f4276d8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/103bdfe78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/109e9ce58f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/10fd25a3f36c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/4066f5998f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/40930f8fb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/40f7459a8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/609310398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/802617cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/d0b68b398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/e1a9158b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/0015174f9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/00efeb18b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/30490cabb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/30883eac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/401ed8388871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/408f698eb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/506c11bbf56c001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/706a9416b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/a0133ccc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/b078be429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/e175b26c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/20fe23b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/218d546e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/30d8f7429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/41364b3a8871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/500c9829c36e001a17dd93e105fd0cb6 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/5162168a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/60e971ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/7049b38b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/70c0af9b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/a0720faab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/a0bb1fe78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/b0c29aaab06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/e03b6a18b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/e09ac98cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/e123558b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/f0cf259b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/f0eb846e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/10a7298b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/20839ee39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/20f60a6d8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/3087dd9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/50166b9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/6019768b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/60a28d18b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/701420aab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/90664e9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/b090deb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/c083c3b38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/c1d8988a9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/e01b75da6d6e001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/e0a2b0b48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/0013b7acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/0112f0b38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/205d278b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/403159ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/503a55509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/50e87ba9076d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/50f307e49a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/60584fcd9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/70bde38db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/70cfe4ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/90a994429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/a0b821419b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/d09f4209f56c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/f08080ca9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/106fc3acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/208d546e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/21fe23b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/40342c8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/409139429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/51dd6f6e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/802480acb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/a09e4facb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/e03d2fb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/f022dce68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/1066e36b8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/700d2eac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/80e338e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/9058a9e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/d026f2e78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/d0d06facb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/e0ef11439b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/100529519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/215d278b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/301c628b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/5025b901db6c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/51fb37b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/905e69509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/30dfaae39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/80e2c7e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/9001136c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/901cb1cc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/9065cb200b6d001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/b0813618b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/c018a6ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/f0c17ecc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/0118e9b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/105c1ee78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/1077c718b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/203ce8a99071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/20ec0e8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/308dcb419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/71b0e2398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/901f7f6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/a08db4429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/b01f418eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/b096ad398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/b173c19b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/c164d7b48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/e0245918b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/e0551e9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/f0f8ddcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/1083a79b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/309e7c8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/5093eda99071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/609f368b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/71af8d509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/a0d1a3b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/b04e8be78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/005d08ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/0081b9cc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/00b38416b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/30acefcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/40aa64cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/40f1bcaa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/803ffde68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/900ca36c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/91b1088b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/c08532e49a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/d1f3178b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/103313e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/40220dadb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/60717b419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/61b4f48a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/70cec96c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/90d065aa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/a0355fe78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/a0ee58e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/b0d05c429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/c028b7388871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/f06573429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/f1e7abb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/01abbf6e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/30b0e08db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/4057264f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/5090d9e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/7034dfacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/705348419b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/70f695acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/a0133ee39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/b04b56e29a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/c07429e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/30dd289b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/409b008b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/40e3a7e19a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/70c05018b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/90aeaeacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/91fe889b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a01816ac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a04b0017b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a0c2b4398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/b16c313a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/c0f0024f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/d07a68cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/e0fa31509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/f015b1509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/00d3308b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/104826b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/11edd2b38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/30d2ff509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/505a3b8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/50bedfb38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/50f22d6e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/603071acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/60ecb69b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/707ba9cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/b0a9756e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/d0a293e29a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/f065f6acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/40cbfab48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/41add5388871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/50d19d429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/6028a34f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/61c24db48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/700c6e18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/8122c8b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/81f6ce388871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/a05394adb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/a0a8a618b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/c09306e49a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/e135876e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/f0a06d29c36e001a17dd93e105fd0cb6 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/50cbaeab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/50dd6f6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/80a742e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/909934cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/a04b5e8b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/b07dd8acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/c0c91a6c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/e08154519571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/10427529c36e001a17dd93e105fd0cb6 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/319c9b9b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/706c2f8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/00411fe39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/00d2866c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/20b3e49b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/30bd916e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/41fbe14e9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/506ad3ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/604033b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/a076ece68f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/d06bee8db56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/e07bdd8db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/e138138b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/10c931429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/2087b618b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/306106ac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/30998716b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/5080118a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/c0d962519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/e104c4398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/f0bf2bcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/10bc97e58f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/2013083af06c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/206a38cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/2171eb4e9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/30665acb9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/30a639ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/60b80bac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/70f5baaa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/8075bbab9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/9022f58db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/90a152ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/a1e9208a9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/b00a128cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/c00784429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/d07f01e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/e062b0e78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/f0f4828cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/0041efa99071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/21b3e49b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/303aff16b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/30a6b2acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/705e718b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/70f6636e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/9040f08db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/91c307b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/a08c5cab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/e0196e6c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/e08b4ae29a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/e0d90fb58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/f021b48db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/f0bac1398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/10018cab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/103f659a8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/40f15e18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/41ac188a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/50ba55e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/50ba9e8cb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/90076718b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/d0117a419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/e075c6398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/00d4c0cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/2071eb4e9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/2094ff8bb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/30c8e2aab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/504e15398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/60cf30b58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/70cf5dacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/808947e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/b00ae06b8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/c064b9419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/e0b4ec6b8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/00cdd6cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/20c167e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/4088fd509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/40c3cae39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60bcaf72126d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/80196e509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/80dd0f8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/907d0ee78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/9094d6429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/909829b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/b03840b58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/b0babf8db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/c0d0bd8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/c147ba9b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/f0683a8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/116948509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/30d210aab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/80fb7bab9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/c0fc05aab06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/e01227adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/201049e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/3055159b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/40058aab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/506c6d6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/60c6266e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/80b73a9b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/00f48218b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/119b606e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/200a87419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/6055f1b48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/90f4fb18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/b04f33429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/b107b0398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/c0eba1c6f16c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/f05e52e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/0037f1e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/306d7e509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/4172413a8871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/60d58eadb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/809c6c8eb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/b00146acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/e0cac5aa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/f003f0e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/1039236d8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/10eb0d18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/3062523a8871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/3079aa18b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/60112138f56c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/708215e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/712bb88b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/b06399aa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/c1105b9b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/f0beae18b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/00a65aadb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/20670d6d8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/704fad9b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/80b92e18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/904ad3cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/c047e7cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/c0f03be39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/f0272a429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/408501e78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/501cdc8db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/606f71e58f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/7020128eb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/70db3455d66c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/8126a16e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/903d47b58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/90b001adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/90b21ae78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/b00ef76e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/b0128718b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/b0309fe19a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/b040c6e19a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/c048f16b8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/c0b709e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/0043896c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/10a3b3e19a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/202c32ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/206f12ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/3080b1e19a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/309cf5398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/30e478429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/40da4d18b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/50b6f8a9b06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/a0e02420f06c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/a0f344b58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/c06c178db56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/f073caacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/00652a6d8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/10c62818b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/10eb1be78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/70ad39419b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/70f7af18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/d09414b58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/f0289e8db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/10ec5c8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/1139236d8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/50361429c36e001a17dd93e105fd0cb6 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/6020d98bb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/608a788b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/70e9e9e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/803a66e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/80b54e519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/a04fbc6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/b0a0808b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/b0f0aa429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/c04a2de39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/e0492b8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/004807cc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/206f1aaab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/20b8d5398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/41feb3b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/81fe1a3a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/900d4d8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/9016e5388871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/b0287eacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/d029b6e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/d15117519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/d198ed6e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/e09859b7c06e001a17dd93e105fd0cb6 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/f08469ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/f176a9b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/204644cb9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/4049136f8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/60464918b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/700810adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/a02ca2e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/c046dcb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/d0f6fce39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/809f6816b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/f0819eacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/106948509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20784fac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20869cacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20d7c1388871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/21b8d5398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/31ab5f8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/414b093a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/512597509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/6042ebacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/6085286c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/610ab29b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/802fd6e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/a09255ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/e097cbe19a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/f0705678db6c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/f0e8b8e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/1067b01e066d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/31128f398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/61fae4398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/80c0a4cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/907db9398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/90bae716b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/a0d7e400d66c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/b0ab074f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/e185939b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/f0b670e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/109b606e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/3072cee78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/31a18c398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/50c392e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/80f29a29c36e001a17dd93e105fd0cb6 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/a08a1db48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/b023b56e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/d01ad5b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/10c896ca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/207863b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/310cc0b48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/5083b08eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/60f8e6e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/8184db398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/91cac7388871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/f049bf398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/100c06398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/20b5da489571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/5110f6b48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/80bb8118b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/9033238a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/b044adab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/e0c822e78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/00ad44adb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/305f2c8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/600fb9ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/60b333e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/60eec7e19a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/70e02ce49a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/905d77429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/91f54b9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/b08449ac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/f0251217b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/2076f3509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/4001db4f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/400b12aa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/40a7396d8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/40eae6b38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/80dfc9419b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/9047da8db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/d00517b58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/e03816240d6d001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0819e8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f133ac509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/50a752c9066d001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/7043cd18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/713fe0398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/902057cd9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/90ce79429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/b0fb1a6d8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/d06e51c9066d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/40a2eb998f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/c04e8dadb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/c065c8b38771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/c0efbc18b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/d0754518b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/0009fa398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/60036918b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/60c6d6509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/905401cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/d0c8beb38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/e04a456e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/f087dbcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/f0e665e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9e/10f283cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9e/307e2e8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9e/70b45bcd9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9e/c0fcf4509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/5009718eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/516ff98a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/61b1686e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/90f787adb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/b0ec878eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/b0fb2e3a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/d045dee68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/d0af76e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/e05fb3509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/10047218b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/40fc7d16b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/509c14adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/50fb37b58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/8035c118b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/c031516e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/c064d7b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/e02fd7998f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/e0309f429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/f034013a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/008650cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/2057a09b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/30071d8cb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/30ecff18b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/405b7718b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/4072413a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/40c60ccc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/904198e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/90fe889b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/a0227516b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/a08ea6509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/c05fa5acb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/d013df8bb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/e023558b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/008f8dcc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/20b13218b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/507298adb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/7022f48bb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/70d9c2e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/a00b29419b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/b06db1acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/b0d960cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/b178b2398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/d066e68bb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/e075b26c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/e0e66e9b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/e0f19f18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/f05e7d398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/f1bac1398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/00742db58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/304c5cb58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/40fc8be58f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/503a5eab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/606d0dcd9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/607f8a16b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/610fa3398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/8021cbaab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/805c96e58f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/8060446e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/a043849b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/a0d535ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/a0e4aae78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/b05bb4419b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/00646b8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/100742cc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/20223518b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/20607e18b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/3058428eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/501c5a509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/50919b9a8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/50b3a2429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/50e6de8eb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/7025d218b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/809f76e58f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/80fe1a3a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/b182858b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/c00e37e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/c0e988429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/d0f3178b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/e094578b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/e1a2b0b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/f0a4ad419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/405af8b48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/50acca8cb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/60191817b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/6027ae2bdc6c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/70b0b5cc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/903527a3f36c001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/90e4d418b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/a0c247f60a6d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/f0858ae39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/008ac99b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/00beeb8bb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/300f7f8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/40991f9c8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/8084db398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/a00803b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/a079386e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/e0f3c98db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/e13d2fb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/f058aeb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/0046ee509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/20b3a0ca9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/406a138cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/50cea2e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/50e665ac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/50f81018b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/6008c5429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/807fea9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/80ee278a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/a03262509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/a0bdc39b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/c053f26e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/e015b1e29a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/e04f95ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/f08a58429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/00885fadb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/200c83e0d56c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/40fc42419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/5074b1e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/6003dbb38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/80ea59429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/90b1088b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/b0f162cb9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/c047143a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/103311cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/1073afe39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/10b0508eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/10e17ce58f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/200e6817b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/205a54ac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/50bde28bb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/71852eb58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/71cf738b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/80c6e88db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/9095d1ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/a05016e88f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/00f22f18b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/10664af6db6c001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/107d26aab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/109b58e68f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/609a898eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/90d8a8509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/b06fcae68f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/c056688eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/c0a5df8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/d08bba509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/d0a9ef16b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/203660ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/305c65429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/40ea02e49a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/40fbe14e9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/a0dcf56b8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/c090218b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/00184eacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/0100bd398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/2084c7509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/20c8a29b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/702a223a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/80be53e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/80df639a8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/9012ce8db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/905a7a948f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/915e69509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/a03d038cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/c01d33419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/c01f1f8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/c0a8ef398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/c0ec43f3ef6c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/007d4c429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/0085aa8db56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/1094a8acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/6019779a8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/6024fd4e9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/8041d0e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/907fdfcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/d0dfebe39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/d0fb91cc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/201b93adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/30623e6d8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/308834429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/407e17e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/603a1c419b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/e0527b18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/30c1adcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/40ac188a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/a0bdf2e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/b0719bcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/b094b76e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/c0e67f18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/e035876e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/10b8a94f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/40228a429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/a09b229b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/a0dbede39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/c06e21e49a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/c0c37c16b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/c1d6113a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/e00a62ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/e03f6eab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/60ac80429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/60d5ddb8f36c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/900386429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/b001e1b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/b0d7dfa99071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/0057cee19a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/90a917adb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/a004c28db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/a02ebc4f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/b038736e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/b0ca2acb9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/b0d9ab8cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/c040166d8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/c132fc9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/d01e26e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/10bf86adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/202883509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/20300918b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/20c1cbb38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/2156c2b48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/30638a17b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/30804d3a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/700897ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/80e074e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/d02cf8cb9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/f02e268cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/f0e53a419b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/0094e0acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/20c2ef6b8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/40d8bf429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/509ff3b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/805d76cc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/c0329d18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/c0c1f99b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/f149bf398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/104bcf8db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/10e70c6c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/707d8bca9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/a0141219b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/a02ec69b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/a0a71baab06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/a0f70718b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/01998d8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/105b7dab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/2056c2b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/21c1cbb38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/30a81c9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/90b05e6c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/c04b9ee58f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/f076a9b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/200275e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/40281d9c8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/40665c509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/4091bcacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/50246ee39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/205ae3a99071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/305158acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/50cd01ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/50d4326e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/70667aca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/80785a3a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/80f2eee78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/a040b88db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/e02a6dcb9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/1015a06e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/207a329b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/20b5e6e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/30d8874f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/600dad6e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/6095f2acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/70e1a56e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/80eec8e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/903e259c8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/91343d6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/b0d107e88f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/c0203f10086d001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/e0511917b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/107eb118b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/20b8e1429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/8078a118b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/90b2d1429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/a079f1ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/b073eecc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/b111838b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/e0178c6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/10aa256d8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/203dc38db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/20aa358a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/3053086c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/308d648b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/30f4a9ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/507310ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/50dc83ca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/600429ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/70ac0fcc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/8017c618b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/904c9a18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/90aa8fab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/90e551cc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/b04a1fadb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/008570e58f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/10d32d82f56c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/3094b5419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/312e946e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/40feb3b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/604ba5429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/609d1fd60d6d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/d00d0ccd9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/f068508b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/00e2679b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/10f3e816b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/20bd82ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/20ec248b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/50cfcdacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/50f1138a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/6040666e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/6080a5398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/b0e2709b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/d007cfacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/d17619b58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/f06fdc16b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/003edbe39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/10fb49080d6d001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/2025c1acb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/2084498eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/30e7bd509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/407296e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/6055d4509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/6070d3e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/8026a16e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/9086f6398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/e0a86b6c8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/001cf48eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/90e67c509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/9167c3b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/a01bea998f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/a1c2b4398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/c0c43d9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/d0decaab9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/100b5c18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/20d327419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/21ec248b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/70888f16b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/90b984e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/d06313adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/e0e104cd9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/f05208439b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/f05aedab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/008fba398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/009aacca9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/30750418b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/404b093a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/702af5cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/8094d5cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/80a86b509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/a020aeca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/a03b9e419b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/c067a918b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/f02a6f509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/f033ac509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/00e8ee8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/40d888e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/41db9c8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/816c0d8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/d02681e58f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/f0e5bd8db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/a108366e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/c06e6aabb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/c1c1f99b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/f04964aa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/20e7feab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/20e965b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/302d9be78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/40e69dac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/412afe8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/5099a5e19a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/50d7bf998f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/8060768eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/a0b86ae58f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/c0d5d9b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/f01019429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/f0632aac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/00c4e48cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/10a53d419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/115de4b48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/308fa1acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/70481d3a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/70b0e2398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/906257e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/c032fc9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/c0fe266c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/e070d59b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/e1055a8b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/006811adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/70af8d509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/802180cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/a020a1e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/b085ca998f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/d0d23f429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/d0d8ea1ed66c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/e006eacc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/005d81acb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/007492acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/00f2bbcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/105d5f8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/2013c5509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/21e965b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/308cce398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/40ccd89b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/90667de39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/a0c2a06c8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/b04fb7a1e46c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/e11982398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/f082c6e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/00ccb7ab9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/20574118b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/206f596e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/305544e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/40e21321f56c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/40f3bfe78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/600fa3398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/700c7ce78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/70eadae68f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/80e0aeadb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/d04589398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/d075d1cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/e0172f398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/e084ba01db6c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/00ad88cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/1049b3e78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/10f44a18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/31bd916e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/50ab57509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/606a92509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/60c5f68cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/9084499b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/a0ab78e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/b0a32b419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/c029eccc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/d1f058b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0182ee49a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0a169429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f153928b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/0064e9509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/0109fa398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/101725adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/306ed3398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/30968bacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/309c9b9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/404c9f8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/80ef416e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/900b1be88f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/9051bdcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/90c33a6e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/a050df8db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/c021da509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/d021383a066d001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/d0bf0f18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/506c26ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/909c4a8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/90fa49519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/a01da4509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/b07632cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/102028e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/2039a59b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/3037c9e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/309f0ee39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/70e3a7429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/802c92e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/806930429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/a02c694f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/a038f3a99071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/c0aa8918b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/c0c93a429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/c0da0ce88f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/e023c6ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/20b780509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/30bd09e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/70f8e88eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/80ccf7a99071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/b01c149b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/d0a412bbf56c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/d145756c8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/f084e28db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/103b5dcd9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/108012e88f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/21fd3c8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30a1e1e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/4025d8ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/4036376d8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/5060ad8cb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/50896118b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/509e7daa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/7149b38b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/71c0af9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/806f7fca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/90c494e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/c071e5e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/c0eb24e78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/d02ff88db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/d0e74e6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f07b22419b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/1018168eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/10f2bc429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/20b1c0e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/20bf94e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/408c3c9b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/70188e50126d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/a0c9449b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/b02805ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/f04873ab9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/406f1b8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/5048c2998f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/708293cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/80619ee78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/80d8628eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/90a87be58f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/b09f3118b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/d1d486398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/e12edc4e9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/20fd3c8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/519ff3b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/90220b8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/b026b2ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/b038026c8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/b04f45aab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/b0c46b4f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/f09704e49a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/003f86acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/10a415e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/21b780509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/9049b4ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/b0bee3509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/f044ce9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/106217e88f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/5062168a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/71e1a56e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/808eae8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/b03787ca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/b123b56e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/d0117b509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/d0d379e58f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/1067aee78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/300cc0b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/90702be68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/90df58cb9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/d19414b58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/e00d4818b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/e1bed4998f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/f0d8c8429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/00c2199b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/308ef6e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/30a18c398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/40733f519571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/4099978db56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/80a47018b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/80e19f8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/b0ee1ecc9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/c0e5658eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/f049ab6c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/30128f398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/407aabacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/40a46bcb9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/6037d9509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/9050178eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a052488b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a0da063af06c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a163608a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/b0dd1f6d8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/f01dc3cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/2063219b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/20a9b5ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/30ab5f8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/712bff6b8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/902c4c18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/a0ee8f429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/f035978b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/10b95b6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/206a71429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/50c3594f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/600174aa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/808683e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/80f14dac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90da0c8cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/c068b06e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/003b3655d66c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/406ce44e9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/407d26e88f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/818d183a8871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/b0633b18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/c147143a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/f02f3dcd9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/20e477cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/413cfdb48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/60115578db6c001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/807e0cb58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/80eec6cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/a0fa1aac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/e0a9158b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/e0ac6c18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/f04914e78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/f0508f50126d001a1f3dc7d0d6cfdd9d delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/007b7cacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/10f96dcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/20ae43509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/30b6e64e9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/402b4aadb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/809fc7998f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/d040989b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/e014919b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/e0e86218b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/00f0eae68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/201ba04f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/206a3ae39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/3007a59a8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/60db94509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/700bd2509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/71dafa4e9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/71deaa9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/805348cd9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/90cc066c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/d0dd18e78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/e0ea8c8db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/317e2e8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/40023d519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/40f5f2998f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/701491acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/70e4318b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/904425aab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/9073e0e78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/90c6b08db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/b1e3bb388871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/c1a8ef398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/e18154519571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/10cf6518b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/2070a518b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/207cb2cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/4011bbe78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/401f8fe78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/9028eeacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/d02639509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/d02f76509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/f2d2edb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/409ee5e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/50c13dcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/602172e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/90fae1a99071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/a0aca1509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/a133b7398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/c1a5df8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/d016cbe78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f0c3fe398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/007afc398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/1063fa17b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/40ea8fca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/60e153cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/6180a5398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/70e39b398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/808c8be29a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/d01b0d3a8871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/d0fc3e8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/4117fb509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/41d1c9398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/50c8e3acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/70f0e2e19a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/806b06adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/c0d6113a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/d070bce78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/e08a84398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/f0041badb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/105de4b48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/10968a8cb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/2035e8acb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/20e3fa18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/a0e1458b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/4063f76b8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/500457429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/507edfe68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/70db65ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/905829e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/a0fb1fb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/d04342429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/f0a2f38a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/4074c9998f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/50bf17398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/70abf19b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/d140989b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/00382baab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/1027639b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/109f7ccc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/4136376d8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/509b78e58f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/703c35668771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/70df84acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/807206aa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/a1f3776e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/c01562ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/c146dcb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/01e2679b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/40ac2b18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/61cf30b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/70ecade39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/b0339daab06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/b082fea9b06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/c06e9318b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/e01875e58f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/f07a116c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/f0d9c3ab9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/00f6d518b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/1079f18db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/40b63cb58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/808c458eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/90ae49b58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/a0f74fadb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/00d2a6429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/2074228eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/2095a5ca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/408bda998f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/506ff98a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/b073c19b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/b0a48d429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/b0f4a6ca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/b196ad398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/d019c6429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/f053928b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/f0e9eaab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/204c3fe39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/3086ffb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/5010f6b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/50ec346d8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/60d12ee39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/70f4599a8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/817e0cb58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/90996d429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/d0641a8b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/018fba398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/314c5cb58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/502ffee39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/70285eadb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/9081b4e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/e00967429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/704d43adb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/b00eb8aab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/b0651acd9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/b06c313a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/b0a3e5e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/600ba39a8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/808d183a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/a058429b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/a07450429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/d0aaafaa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/502597509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/607c8e8eb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/c0634badb06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/e0006517b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/f01205aa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/206c5e9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/40cab4e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/a080c5388871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/a0bc4a8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/b029b5e19a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/b190deb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/c01692e58f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/c0a078e29a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/f039a4429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/00205218b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/00a6a0e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/00d5eb509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/104851e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/20e479e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/307cb3429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/309bbdb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/31623e6d8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/402afe8a9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/70e99529c36e001a17dd93e105fd0cb6 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/80ef0eb58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/b02a8917b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/b0e7f08eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/c05b86ab9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/d0b4c7acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/d17ce8398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/e0fe59acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/f144ce9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/0085329c8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/308a4ecc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/70187bcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/a0ef9eb48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/d04aaf8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/d0e2ffa99071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/e091cb6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/f065c46e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/119426519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/216c5e9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/405c37ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/414c9f8b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/a00e1918b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e024e7e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e04a12b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/f0c8a1429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/f0fcf718b66e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/102335aab06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/107116adb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/10d9f1a99071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/504ba6e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/601e92b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/704106cd9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/71ddccb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/90ed6fab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/a03d8a8b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/b0b3fe18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/c06391e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/d086bb8b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/e01e378cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/00998d8b9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/2079b98db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/30671d8a9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/80591b8cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/a012cde78f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/b00f1a8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/c07598ca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/c165c8b38771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/d0ffab18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/f0f68ce39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/10b6609b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/2043196c8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/30c12118b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/41ccd89b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/70d71b29c36e001a17dd93e105fd0cb6 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/9143163a8871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/a19700b58771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/c0124f18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/c0e13d509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/d0f5e38bb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/f04c21aab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/f0ea6a8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/10660dac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/10b928b58771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/10ebd2429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/20d0f5a9b06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/50122b429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/503d4418b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/7005d94f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/7008279b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/90ee8ecc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/b03a0f9b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/b0cd5318b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/c0781faa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/e0d3c1e19a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/00836d8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/109426519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/201986e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/4011ad18b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/c02b3fcd9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/c07d1e519571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/0000bd398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/0089ebb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/00b7f0509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/00dbaacc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/10f845509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/205360429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/20eb63e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/7066b44f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/7070a36e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/7074bfcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/900c8acc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/a04622398871001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/d03a17aab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/20b9dcab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/2148698b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/607d958a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/60fae4398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/70518e8a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/a1a364509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/b0c939cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/c0c4f46e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/d05e894f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/e1a6896e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/00299de78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/600ab29b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/603ab6998f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/80c7c7429b71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/0080138eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/304d2f419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/50812b6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/50f5ba998f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/9034f6ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/903d72e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/a09346ab9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/a0bf8e8db56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/b0cb8ee39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/d0f6136d8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/e06c5ccc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/f149ab6c8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/001ba88a9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/3039e5aab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/404e20cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/707052429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/80b1c5b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/81ef416e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/90a18316b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/c047ba9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/c0fe0dcc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/4017fb509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/40d1c9398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/6095ff4e9571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/6098ee16b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/80f0ec9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/b1dcde509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/f135978b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/2048698b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/40edce6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/618a788b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/803bee6b8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/8040288eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/a04288419b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/a0755fb48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/b0882018b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/d0d7e0ab9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/20e9986e8771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/5000348eb56e001a173da96cce181ab0 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/6019efa9b06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/60b1686e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/7086c8ca9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/70adf3e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/9159226e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/a0d70e4f9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/c04c80e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/d0b444429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/e09184ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/309824e39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/60a60a8eb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/7029cd509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/706fb9e19a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/714ecfb48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/907fb1aa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/90ae7c6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/b126418b9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/e0f09c9a8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/20fe06519571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/3071358cb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/607be3e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/6099dee39a71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/609a18aab06e001a18bbdaa1f718f3a2 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/804965acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/b06f1b9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/e0e6c8398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/2050e3cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/20e4f9e68f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/30d5dc998f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/00778e16b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/200619cd9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/3046df998f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/30516697c16e001a17dd93e105fd0cb6 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/405be9b38771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/409f17ac9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/70e2f118b66e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/80bd29509571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/904287cb9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/c0377cadb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/e07471509571001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/e0f4b072126d001a1f3dc7d0d6cfdd9d create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/f0f175e78f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/104a5b429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/302e946e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/403cfdb48771001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/509fe78bb56e001a173da96cce181ab0 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/60a452b48771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/a02a4fe39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/0007fce68f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/302ec6acb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/401b69e39a71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/50ab1dcb9071001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/50cd09aab06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/5180118a9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/703aef9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/808008cc9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/80bc2b398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/c0105b9b8f71001a1f70833eb9ed7011 delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/c0f58cacb06e001a18bbdaa1f718f3a2 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/f073d74e9571001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/f1c3fe398871001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/00adc1429b71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/018ac99b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/10f80bcb9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/20c219ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/409143ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/608e1f9b8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/803610aa9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/d0054a6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/d01e67ac9071001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/d0764c6e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/e051789a8f71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/f0d6c66e8771001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/b5/properties.index delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.root/53.tree create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.root/54.tree delete mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/53.snap create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/54.snap (limited to 'Software/Embedded_SW/Embedded/Modules') diff --git a/Software/.metadata/.plugins/org.eclipse.cdt.core/Embedded.1560423654045.pdom b/Software/.metadata/.plugins/org.eclipse.cdt.core/Embedded.1560423654045.pdom index bbd44ba02..83b61e64f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.cdt.core/Embedded.1560423654045.pdom and b/Software/.metadata/.plugins/org.eclipse.cdt.core/Embedded.1560423654045.pdom differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/005ea9e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/005ea9e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/005ea9e78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/30e3219c8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/30e3219c8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/30e3219c8f71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/408dc7f0bf6e001a17dd93e105fd0cb6 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/408dc7f0bf6e001a17dd93e105fd0cb6 deleted file mode 100644 index eb37ed6c0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/408dc7f0bf6e001a17dd93e105fd0cb6 +++ /dev/null @@ -1,269 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -/* ----------------------- System includes ----------------------------------*/ -#include "stdlib.h" -#include "string.h" - -/* ----------------------- Platform includes --------------------------------*/ -#include "port.h" - -/* ----------------------- Modbus includes ----------------------------------*/ -#include "mb.h" -#include "mbframe.h" -#include "mbproto.h" -#include "mbconfig.h" - -/* ----------------------- Defines ------------------------------------------*/ -#define MB_PDU_FUNC_READ_ADDR_OFF ( MB_PDU_DATA_OFF ) -#define MB_PDU_FUNC_READ_COILCNT_OFF ( MB_PDU_DATA_OFF + 2 ) -#define MB_PDU_FUNC_READ_SIZE ( 4 ) -#define MB_PDU_FUNC_READ_COILCNT_MAX ( 0x07D0 ) - -#define MB_PDU_FUNC_WRITE_ADDR_OFF ( MB_PDU_DATA_OFF ) -#define MB_PDU_FUNC_WRITE_VALUE_OFF ( MB_PDU_DATA_OFF + 2 ) -#define MB_PDU_FUNC_WRITE_SIZE ( 4 ) - -#define MB_PDU_FUNC_WRITE_MUL_ADDR_OFF ( MB_PDU_DATA_OFF ) -#define MB_PDU_FUNC_WRITE_MUL_COILCNT_OFF ( MB_PDU_DATA_OFF + 2 ) -#define MB_PDU_FUNC_WRITE_MUL_BYTECNT_OFF ( MB_PDU_DATA_OFF + 4 ) -#define MB_PDU_FUNC_WRITE_MUL_VALUES_OFF ( MB_PDU_DATA_OFF + 5 ) -#define MB_PDU_FUNC_WRITE_MUL_SIZE_MIN ( 5 ) -#define MB_PDU_FUNC_WRITE_MUL_COILCNT_MAX ( 0x07B0 ) - -/* ----------------------- Static functions ---------------------------------*/ -eMBException prveMBError2Exception( eMBErrorCode eErrorCode ); - -/* ----------------------- Start implementation -----------------------------*/ - -#if MB_FUNC_READ_COILS_ENABLED > 0 - -eMBException -eMBFuncReadCoils( UCHAR * pucFrame, USHORT * usLen ) -{ - USHORT usRegAddress; - USHORT usCoilCount; - UCHAR ucNBytes; - UCHAR *pucFrameCur; - - eMBException eStatus = MB_EX_NONE; - eMBErrorCode eRegStatus; - - if( *usLen == ( MB_PDU_FUNC_READ_SIZE + MB_PDU_SIZE_MIN ) ) - { - usRegAddress = ( USHORT )( pucFrame[MB_PDU_FUNC_READ_ADDR_OFF] << 8 ); - usRegAddress |= ( USHORT )( pucFrame[MB_PDU_FUNC_READ_ADDR_OFF + 1] ); - usRegAddress++; - - usCoilCount = ( USHORT )( pucFrame[MB_PDU_FUNC_READ_COILCNT_OFF] << 8 ); - usCoilCount |= ( USHORT )( pucFrame[MB_PDU_FUNC_READ_COILCNT_OFF + 1] ); - - /* Check if the number of registers to read is valid. If not - * return Modbus illegal data value exception. - */ - if( ( usCoilCount >= 1 ) && - ( usCoilCount < MB_PDU_FUNC_READ_COILCNT_MAX ) ) - { - /* Set the current PDU data pointer to the beginning. */ - pucFrameCur = &pucFrame[MB_PDU_FUNC_OFF]; - *usLen = MB_PDU_FUNC_OFF; - - /* First byte contains the function code. */ - *pucFrameCur++ = MB_FUNC_READ_COILS; - *usLen += 1; - - /* Test if the quantity of coils is a multiple of 8. If not last - * byte is only partially field with unused coils set to zero. */ - if( ( usCoilCount & 0x0007 ) != 0 ) - { - ucNBytes = ( UCHAR )( usCoilCount / 8 + 1 ); - } - else - { - ucNBytes = ( UCHAR )( usCoilCount / 8 ); - } - *pucFrameCur++ = ucNBytes; - *usLen += 1; - - eRegStatus = - eMBRegCoilsCB( pucFrameCur, usRegAddress, usCoilCount, - MB_REG_READ ); - - /* If an error occured convert it into a Modbus exception. */ - if( eRegStatus != MB_ENOERR ) - { - eStatus = prveMBError2Exception( eRegStatus ); - } - else - { - /* The response contains the function code, the starting address - * and the quantity of registers. We reuse the old values in the - * buffer because they are still valid. */ - *usLen += ucNBytes;; - } - } - else - { - eStatus = MB_EX_ILLEGAL_DATA_VALUE; - } - } - else - { - /* Can't be a valid read coil register request because the length - * is incorrect. */ - eStatus = MB_EX_ILLEGAL_DATA_VALUE; - } - return eStatus; -} - -#if MB_FUNC_WRITE_COIL_ENABLED > 0 -eMBException -eMBFuncWriteCoil( UCHAR * pucFrame, USHORT * usLen ) -{ - USHORT usRegAddress; - UCHAR ucBuf[2]; - - eMBException eStatus = MB_EX_NONE; - eMBErrorCode eRegStatus; - - if( *usLen == ( MB_PDU_FUNC_WRITE_SIZE + MB_PDU_SIZE_MIN ) ) - { - usRegAddress = ( USHORT )( pucFrame[MB_PDU_FUNC_WRITE_ADDR_OFF] << 8 ); - usRegAddress |= ( USHORT )( pucFrame[MB_PDU_FUNC_WRITE_ADDR_OFF + 1] ); - usRegAddress++; - - if( ( pucFrame[MB_PDU_FUNC_WRITE_VALUE_OFF + 1] == 0x00 ) && - ( ( pucFrame[MB_PDU_FUNC_WRITE_VALUE_OFF] == 0xFF ) || - ( pucFrame[MB_PDU_FUNC_WRITE_VALUE_OFF] == 0x00 ) ) ) - { - ucBuf[1] = 0; - if( pucFrame[MB_PDU_FUNC_WRITE_VALUE_OFF] == 0xFF ) - { - ucBuf[0] = 1; - } - else - { - ucBuf[0] = 0; - } - eRegStatus = - eMBRegCoilsCB( &ucBuf[0], usRegAddress, 1, MB_REG_WRITE ); - - /* If an error occured convert it into a Modbus exception. */ - if( eRegStatus != MB_ENOERR ) - { - eStatus = prveMBError2Exception( eRegStatus ); - } - } - else - { - eStatus = MB_EX_ILLEGAL_DATA_VALUE; - } - } - else - { - /* Can't be a valid write coil register request because the length - * is incorrect. */ - eStatus = MB_EX_ILLEGAL_DATA_VALUE; - } - return eStatus; -} - -#endif - -#if MB_FUNC_WRITE_MULTIPLE_COILS_ENABLED > 0 -eMBException -eMBFuncWriteMultipleCoils( UCHAR * pucFrame, USHORT * usLen ) -{ - USHORT usRegAddress; - USHORT usCoilCnt; - UCHAR ucByteCount; - UCHAR ucByteCountVerify; - - eMBException eStatus = MB_EX_NONE; - eMBErrorCode eRegStatus; - - if( *usLen > ( MB_PDU_FUNC_WRITE_SIZE + MB_PDU_SIZE_MIN ) ) - { - usRegAddress = ( USHORT )( pucFrame[MB_PDU_FUNC_WRITE_MUL_ADDR_OFF] << 8 ); - usRegAddress |= ( USHORT )( pucFrame[MB_PDU_FUNC_WRITE_MUL_ADDR_OFF + 1] ); - usRegAddress++; - - usCoilCnt = ( USHORT )( pucFrame[MB_PDU_FUNC_WRITE_MUL_COILCNT_OFF] << 8 ); - usCoilCnt |= ( USHORT )( pucFrame[MB_PDU_FUNC_WRITE_MUL_COILCNT_OFF + 1] ); - - ucByteCount = pucFrame[MB_PDU_FUNC_WRITE_MUL_BYTECNT_OFF]; - - /* Compute the number of expected bytes in the request. */ - if( ( usCoilCnt & 0x0007 ) != 0 ) - { - ucByteCountVerify = ( UCHAR )( usCoilCnt / 8 + 1 ); - } - else - { - ucByteCountVerify = ( UCHAR )( usCoilCnt / 8 ); - } - - if( ( usCoilCnt >= 1 ) && - ( usCoilCnt <= MB_PDU_FUNC_WRITE_MUL_COILCNT_MAX ) && - ( ucByteCountVerify == ucByteCount ) ) - { - eRegStatus = - eMBRegCoilsCB( &pucFrame[MB_PDU_FUNC_WRITE_MUL_VALUES_OFF], - usRegAddress, usCoilCnt, MB_REG_WRITE ); - - /* If an error occured convert it into a Modbus exception. */ - if( eRegStatus != MB_ENOERR ) - { - eStatus = prveMBError2Exception( eRegStatus ); - } - else - { - /* The response contains the function code, the starting address - * and the quantity of registers. We reuse the old values in the - * buffer because they are still valid. */ - *usLen = MB_PDU_FUNC_WRITE_MUL_BYTECNT_OFF; - } - } - else - { - eStatus = MB_EX_ILLEGAL_DATA_VALUE; - } - } - else - { - /* Can't be a valid write coil register request because the length - * is incorrect. */ - eStatus = MB_EX_ILLEGAL_DATA_VALUE; - } - return eStatus; -} - -#endif - -#endif diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/409dba419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/409dba419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/409dba419b71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/619caa6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/619caa6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/619caa6e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/a008366e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/a008366e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/a008366e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/c0d8988a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/c0d8988a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/c0d8988a9571001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/00b349419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/00b349419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/00b349419b71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/204988ca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/204988ca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/204988ca9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/204d019a8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/204d019a8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/204d019a8f71001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/20aa1fabb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/20aa1fabb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 2fb0a39e1..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/20aa1fabb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ -../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ -../Communication/PMR/Power/PowerDownState.pb-c.c \ -../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ -../Communication/PMR/Power/StartPowerDownResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ -./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ -./Communication/PMR/Power/PowerDownState.pb-c.d \ -./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ -./Communication/PMR/Power/StartPowerDownResponse.pb-c.d - -OBJS += \ -./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ -./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ -./Communication/PMR/Power/PowerDownState.pb-c.obj \ -./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ -./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ -"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ -"Communication\PMR\Power\PowerDownState.pb-c.obj" \ -"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ -"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ -"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ -"Communication\PMR\Power\PowerDownState.pb-c.d" \ -"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ -"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ -"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ -"../Communication/PMR/Power/PowerDownState.pb-c.c" \ -"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ -"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/60371317b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/60371317b66e001a173da96cce181ab0 deleted file mode 100644 index 3c7aad50c..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/60371317b66e001a173da96cce181ab0 +++ /dev/null @@ -1,162 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/81f5dd398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/81f5dd398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/81f5dd398871001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/a0ddb218b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/a0ddb218b66e001a173da96cce181ab0 deleted file mode 100644 index 42f679a53..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/a0ddb218b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/b093bee78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/b093bee78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/b093bee78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/d0618e6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/d0618e6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/d0618e6e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/d09a2a18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/d09a2a18b66e001a173da96cce181ab0 deleted file mode 100644 index 83cbddb67..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/d09a2a18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Flash_Memory/Flash_Memory.c - -C_DEPS += \ -./Drivers/Flash_Memory/Flash_Memory.d - -OBJS += \ -./Drivers/Flash_Memory/Flash_Memory.obj - -OBJS__QUOTED += \ -"Drivers\Flash_Memory\Flash_Memory.obj" - -C_DEPS__QUOTED += \ -"Drivers\Flash_Memory\Flash_Memory.d" - -C_SRCS__QUOTED += \ -"../Drivers/Flash_Memory/Flash_Memory.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/e0bed4998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/e0bed4998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/e0bed4998f71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/60aba18db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/60aba18db56e001a173da96cce181ab0 deleted file mode 100644 index f07a9a1c6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/60aba18db56e001a173da96cce181ab0 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/a09212cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/a09212cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/a09212cc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/c19f589b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/c19f589b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/c19f589b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/d0459fac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/d0459fac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/d0459fac9071001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/201df859086d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/201df859086d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/201df859086d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/20d8f6cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/20d8f6cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/20d8f6cc9071001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/30bc16cd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/30bc16cd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/30bc16cd9071001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/607910e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/607910e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/607910e78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/60a519adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/60a519adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/60a519adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/712a223a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/712a223a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/712a223a8871001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/b007b0398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/b007b0398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/b007b0398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/f0d1a7e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/f0d1a7e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/f0d1a7e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/10103badb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/10103badb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index a01b7c044..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/10103badb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/Control/DriverWithCallbackExample.c \ -../Modules/Control/MillisecTask.c \ -../Modules/Control/PIDAlgo.c \ -../Modules/Control/control.c - -C_DEPS += \ -./Modules/Control/DriverWithCallbackExample.d \ -./Modules/Control/MillisecTask.d \ -./Modules/Control/PIDAlgo.d \ -./Modules/Control/control.d - -OBJS += \ -./Modules/Control/DriverWithCallbackExample.obj \ -./Modules/Control/MillisecTask.obj \ -./Modules/Control/PIDAlgo.obj \ -./Modules/Control/control.obj - -OBJS__QUOTED += \ -"Modules\Control\DriverWithCallbackExample.obj" \ -"Modules\Control\MillisecTask.obj" \ -"Modules\Control\PIDAlgo.obj" \ -"Modules\Control\control.obj" - -C_DEPS__QUOTED += \ -"Modules\Control\DriverWithCallbackExample.d" \ -"Modules\Control\MillisecTask.d" \ -"Modules\Control\PIDAlgo.d" \ -"Modules\Control\control.d" - -C_SRCS__QUOTED += \ -"../Modules/Control/DriverWithCallbackExample.c" \ -"../Modules/Control/MillisecTask.c" \ -"../Modules/Control/PIDAlgo.c" \ -"../Modules/Control/control.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/101345e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/101345e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/101345e68f71001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/30168ae78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/30168ae78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/30168ae78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/30eeb0ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/30eeb0ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/30eeb0ab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/30f89bca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/30f89bca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/30f89bca9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/4014b6429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/4014b6429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/4014b6429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/503baa398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/503baa398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/503baa398871001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/7072eee68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/7072eee68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/7072eee68f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/70852eb58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/70852eb58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/70852eb58771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/70cf738b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/70cf738b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/70cf738b9571001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/a063608a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/a063608a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/a063608a9571001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/b054be388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/b054be388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/b054be388871001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/d009399b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/d009399b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/d009399b8f71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/d02c3bac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/d02c3bac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/d02c3bac9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/f01a51ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/f01a51ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/f01a51ab9071001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/f01f2f6d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/f01f2f6d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/f01f2f6d8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/f08d9c419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/f08d9c419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/f08d9c419b71001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/11b928b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/11b928b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/11b928b58771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/308ace1d146d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/308ace1d146d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/308ace1d146d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/40e7078eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/40e7078eb56e001a173da96cce181ab0 deleted file mode 100644 index 431533061..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/40e7078eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/702715240d6d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/702715240d6d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/702715240d6d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/909724ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/909724ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/909724ac9071001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/91220b8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/91220b8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/91220b8b9571001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/a0af1ee49a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/a0af1ee49a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/a0af1ee49a71001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/c02d64ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/c02d64ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/c02d64ab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/d045756c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/d045756c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/d045756c8771001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/d073519b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/d073519b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/d073519b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/e0055a8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/e0055a8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/e0055a8b9571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/e170d59b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/e170d59b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/13/e170d59b8f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/10036e8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/10036e8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/10036e8b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/205c91398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/205c91398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/205c91398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/40e6234f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/40e6234f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/40e6234f9571001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/40fa9b18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/40fa9b18b66e001a173da96cce181ab0 deleted file mode 100644 index 8f295c82e..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/40fa9b18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/SSI_Comm/Dancer/Dancer.c - -C_DEPS += \ -./Drivers/SSI_Comm/Dancer/Dancer.d - -OBJS += \ -./Drivers/SSI_Comm/Dancer/Dancer.obj - -OBJS__QUOTED += \ -"Drivers\SSI_Comm\Dancer\Dancer.obj" - -C_DEPS__QUOTED += \ -"Drivers\SSI_Comm\Dancer\Dancer.d" - -C_SRCS__QUOTED += \ -"../Drivers/SSI_Comm/Dancer/Dancer.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/60387518b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/60387518b66e001a173da96cce181ab0 deleted file mode 100644 index a52b2440b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/60387518b66e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ -../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ -./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ -./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ -"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ -"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ -"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/7063b8e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/7063b8e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/7063b8e58f71001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/70ba9facb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/70ba9facb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index c2aaaeb6f..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/70ba9facb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/80a3568eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/80a3568eb56e001a173da96cce181ab0 deleted file mode 100644 index b223c7168..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/80a3568eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/a094a8ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/a094a8ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/a094a8ac9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/a0c15f509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/a0c15f509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/a0c15f509571001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/c0728d419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/c0728d419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/c0728d419b71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/d0d486398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/d0d486398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/d0d486398871001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/f1ae2c6d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/f1ae2c6d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/f1ae2c6d8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/001425419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/001425419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/001425419b71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/00c27f429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/00c27f429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/00c27f429b71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/3023368eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/3023368eb56e001a173da96cce181ab0 deleted file mode 100644 index 4897c67e4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/3023368eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/4054463a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/4054463a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/4054463a8871001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/406c1bcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/406c1bcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/406c1bcc9071001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/409699e29a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/409699e29a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/409699e29a71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/40b7d8e19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/40b7d8e19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/40b7d8e19a71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/40efe28cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/40efe28cb56e001a173da96cce181ab0 deleted file mode 100644 index 0c7afdd70..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/40efe28cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,152 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/IO/CreateRequest.pb-c.c \ -../Communication/PMR/IO/CreateResponse.pb-c.c \ -../Communication/PMR/IO/DeleteRequest.pb-c.c \ -../Communication/PMR/IO/DeleteResponse.pb-c.c \ -../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ -../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ -../Communication/PMR/IO/FileAttribute.pb-c.c \ -../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ -../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ -../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ -../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ -../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ -../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ -../Communication/PMR/IO/FileInfo.pb-c.c \ -../Communication/PMR/IO/FileUploadRequest.pb-c.c \ -../Communication/PMR/IO/FileUploadResponse.pb-c.c \ -../Communication/PMR/IO/GetFilesRequest.pb-c.c \ -../Communication/PMR/IO/GetFilesResponse.pb-c.c \ -../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ -../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ -../Communication/PMR/IO/KillProcessRequest.pb-c.c \ -../Communication/PMR/IO/KillProcessResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/IO/CreateRequest.pb-c.d \ -./Communication/PMR/IO/CreateResponse.pb-c.d \ -./Communication/PMR/IO/DeleteRequest.pb-c.d \ -./Communication/PMR/IO/DeleteResponse.pb-c.d \ -./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ -./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ -./Communication/PMR/IO/FileAttribute.pb-c.d \ -./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ -./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ -./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ -./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ -./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ -./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ -./Communication/PMR/IO/FileInfo.pb-c.d \ -./Communication/PMR/IO/FileUploadRequest.pb-c.d \ -./Communication/PMR/IO/FileUploadResponse.pb-c.d \ -./Communication/PMR/IO/GetFilesRequest.pb-c.d \ -./Communication/PMR/IO/GetFilesResponse.pb-c.d \ -./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ -./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ -./Communication/PMR/IO/KillProcessRequest.pb-c.d \ -./Communication/PMR/IO/KillProcessResponse.pb-c.d - -OBJS += \ -./Communication/PMR/IO/CreateRequest.pb-c.obj \ -./Communication/PMR/IO/CreateResponse.pb-c.obj \ -./Communication/PMR/IO/DeleteRequest.pb-c.obj \ -./Communication/PMR/IO/DeleteResponse.pb-c.obj \ -./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ -./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ -./Communication/PMR/IO/FileAttribute.pb-c.obj \ -./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ -./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ -./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ -./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ -./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ -./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ -./Communication/PMR/IO/FileInfo.pb-c.obj \ -./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ -./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ -./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ -./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ -./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ -./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ -./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ -./Communication/PMR/IO/KillProcessResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\IO\CreateRequest.pb-c.obj" \ -"Communication\PMR\IO\CreateResponse.pb-c.obj" \ -"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ -"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ -"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ -"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ -"Communication\PMR\IO\FileAttribute.pb-c.obj" \ -"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ -"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ -"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ -"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ -"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ -"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ -"Communication\PMR\IO\FileInfo.pb-c.obj" \ -"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ -"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ -"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ -"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ -"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ -"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ -"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ -"Communication\PMR\IO\KillProcessResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\IO\CreateRequest.pb-c.d" \ -"Communication\PMR\IO\CreateResponse.pb-c.d" \ -"Communication\PMR\IO\DeleteRequest.pb-c.d" \ -"Communication\PMR\IO\DeleteResponse.pb-c.d" \ -"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ -"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ -"Communication\PMR\IO\FileAttribute.pb-c.d" \ -"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ -"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ -"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ -"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ -"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ -"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ -"Communication\PMR\IO\FileInfo.pb-c.d" \ -"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ -"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ -"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ -"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ -"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ -"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ -"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ -"Communication\PMR\IO\KillProcessResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/IO/CreateRequest.pb-c.c" \ -"../Communication/PMR/IO/CreateResponse.pb-c.c" \ -"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ -"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ -"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ -"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ -"../Communication/PMR/IO/FileAttribute.pb-c.c" \ -"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ -"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ -"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ -"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ -"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ -"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ -"../Communication/PMR/IO/FileInfo.pb-c.c" \ -"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ -"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ -"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ -"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ -"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ -"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ -"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ -"../Communication/PMR/IO/KillProcessResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/904dd3acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/904dd3acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index e336f53b6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/904dd3acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/e01982398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/e01982398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/e01982398871001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/00a57fab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/00a57fab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/00a57fab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/50d3b7cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/50d3b7cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/50d3b7cc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/60360f8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/60360f8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/60360f8a9571001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/605003cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/605003cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/605003cc9071001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/70ceb2e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/70ceb2e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/70ceb2e39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/80439518b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/80439518b66e001a173da96cce181ab0 deleted file mode 100644 index f2fecf89b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/80439518b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/On_Chip_Flash/Flashstore.c - -C_DEPS += \ -./Drivers/On_Chip_Flash/Flashstore.d - -OBJS += \ -./Drivers/On_Chip_Flash/Flashstore.obj - -OBJS__QUOTED += \ -"Drivers\On_Chip_Flash\Flashstore.obj" - -C_DEPS__QUOTED += \ -"Drivers\On_Chip_Flash\Flashstore.d" - -C_SRCS__QUOTED += \ -"../Drivers/On_Chip_Flash/Flashstore.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/c000e3e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/c000e3e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/c000e3e68f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/d0fb5a4f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/d0fb5a4f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/d0fb5a4f9571001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/f1d9528b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/f1d9528b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/f1d9528b9571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/00954f509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/00954f509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/00954f509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/102dd48db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/102dd48db56e001a173da96cce181ab0 deleted file mode 100644 index 54dde83fa..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/102dd48db56e001a173da96cce181ab0 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/200834419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/200834419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/200834419b71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/209ee4e19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/209ee4e19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/209ee4e19a71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/20fb48f60a6d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/20fb48f60a6d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/20fb48f60a6d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/307e18abb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/307e18abb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 89e01b6a8..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/307e18abb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,62 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ -../Communication/PMR/MachineStatus/MachineState.pb-c.c \ -../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ -../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ -../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ -../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ -../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ -./Communication/PMR/MachineStatus/MachineState.pb-c.d \ -./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ -./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ -./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ -./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ -./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d - -OBJS += \ -./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ -./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ -./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ -./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ -./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ -./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ -./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ -"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ -"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ -"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ -"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ -"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ -"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ -"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ -"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ -"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ -"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ -"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ -"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ -"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ -"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ -"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ -"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ -"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ -"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/40e83d10086d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/40e83d10086d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/40e83d10086d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/40ef99e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/40ef99e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/40ef99e39a71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/50931de39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/50931de39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/50931de39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/a03823e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/a03823e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/a03823e39a71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/d085253a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/d085253a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/d085253a8871001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/213d41509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/213d41509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/213d41509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/304302519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/304302519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/304302519571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/3058c0509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/3058c0509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/3058c0509571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/30f14f3a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/30f14f3a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/30f14f3a8871001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/40f297acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/40f297acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 2d8d13e32..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/40f297acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c - -C_DEPS += \ -./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d - -OBJS += \ -./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/60c24db48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/60c24db48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/60c24db48771001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/813df14e9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/813df14e9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/813df14e9571001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/a03a479b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/a03a479b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/a03a479b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/a0f6038b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/a0f6038b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/a0f6038b9571001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/e0a088e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/e0a088e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/e0a088e58f71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/f0546dabb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/f0546dabb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index c16845ede..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/f0546dabb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,183 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/20ad45398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/20ad45398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/20ad45398871001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/40a6f8509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/40a6f8509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/40a6f8509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/61ecb69b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/61ecb69b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/61ecb69b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/c037ed398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/c037ed398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/c037ed398871001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/d0321f29c36e001a17dd93e105fd0cb6 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/d0321f29c36e001a17dd93e105fd0cb6 deleted file mode 100644 index b182e69d3..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/d0321f29c36e001a17dd93e105fd0cb6 +++ /dev/null @@ -1,35 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -#ifndef _MB_CRC_H -#define _MB_CRC_H - -USHORT usMBCRC16( UCHAR * pucFrame, USHORT usLen ); - -#endif diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/1081ba429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/1081ba429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/1081ba429b71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/201a77e29a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/201a77e29a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/201a77e29a71001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/60495cac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/60495cac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/60495cac9071001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/707228adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/707228adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index b37735f09..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/707228adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/91c33a6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/91c33a6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/91c33a6e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/f0598c9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/f0598c9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/f0598c9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/f0d811e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/f0d811e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/f0d811e78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/10182c8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/10182c8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/10182c8b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/10cee6b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/10cee6b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/10cee6b48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/30402620f06c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/30402620f06c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/30402620f06c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/70563818b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/70563818b66e001a173da96cce181ab0 deleted file mode 100644 index 5c32f02ce..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/70563818b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c - -C_DEPS += \ -./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d - -OBJS += \ -./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/902727b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/902727b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/902727b48771001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/90ea21429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/90ea21429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/90ea21429b71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/a033b7398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/a033b7398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/a033b7398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/a0d51f398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/a0d51f398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/a0d51f398871001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/a1aca1509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/a1aca1509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/a1aca1509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/c0650f3a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/c0650f3a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/c0650f3a8871001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/d039c1b38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/d039c1b38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/d039c1b38771001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/d0810eadb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/d0810eadb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 4501ed229..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/d0810eadb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/21ad45398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/21ad45398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/21ad45398871001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/302abbb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/302abbb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/302abbb48771001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/40afb8a1e46c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/40afb8a1e46c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/40afb8a1e46c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/5060359b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/5060359b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/5060359b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/60b4f48a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/60b4f48a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/60b4f48a9571001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/704f13439b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/704f13439b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/704f13439b71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/903608e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/903608e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/903608e39a71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/90b9bb429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/90b9bb429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/90b9bb429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/a0989aca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/a0989aca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/a0989aca9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/b13840b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/b13840b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/b13840b58771001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/c092dc509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/c092dc509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/c092dc509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/e02edc4e9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/e02edc4e9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/e02edc4e9571001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/003087e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/003087e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/003087e78f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/203d41509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/203d41509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/203d41509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/304c7a36d76e001a1c4ce2378ee7c6e4 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/304c7a36d76e001a1c4ce2378ee7c6e4 deleted file mode 100644 index 20975e29b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/304c7a36d76e001a1c4ce2378ee7c6e4 +++ /dev/null @@ -1,55 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -#ifndef _MB_ASCII_H -#define _MB_ASCII_H - -#ifdef __cplusplus -PR_BEGIN_EXTERN_C -#endif - -#if MB_ASCII_ENABLED > 0 -eMBErrorCode eMBASCIIInit( UCHAR slaveAddress, UCHAR ucPort, - ULONG ulBaudRate, eMBParity eParity ); -void eMBASCIIStart( void ); -void eMBASCIIStop( void ); - -eMBErrorCode eMBASCIIReceive( UCHAR * pucRcvAddress, UCHAR ** pucFrame, - USHORT * pusLength ); -eMBErrorCode eMBASCIISend( UCHAR slaveAddress, const UCHAR * pucFrame, - USHORT usLength ); -BOOL xMBASCIIReceiveFSM( void ); -BOOL xMBASCIITransmitFSM( void ); -BOOL xMBASCIITimerT1SExpired( void ); -#endif - -#ifdef __cplusplus -PR_END_EXTERN_C -#endif -#endif diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/5033ed8db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/5033ed8db56e001a173da96cce181ab0 deleted file mode 100644 index 4b547970d..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/5033ed8db56e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ -../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ -./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ -./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ -"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ -"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ -"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/8185cc388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/8185cc388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/8185cc388871001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/902d49f6db6c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/902d49f6db6c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/902d49f6db6c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/90a4258a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/90a4258a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/90a4258a9571001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/a05185cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/a05185cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/a05185cc9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/a0abf8e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/a0abf8e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/a0abf8e68f71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/b062a8ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/b062a8ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/b062a8ab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/c1c6ea398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/c1c6ea398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/c1c6ea398871001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/d03273e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/d03273e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/d03273e78f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/d0e4539b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/d0e4539b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/d0e4539b8f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/008b20429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/008b20429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/008b20429b71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/107800adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/107800adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index f2fecf89b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/107800adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/On_Chip_Flash/Flashstore.c - -C_DEPS += \ -./Drivers/On_Chip_Flash/Flashstore.d - -OBJS += \ -./Drivers/On_Chip_Flash/Flashstore.obj - -OBJS__QUOTED += \ -"Drivers\On_Chip_Flash\Flashstore.obj" - -C_DEPS__QUOTED += \ -"Drivers\On_Chip_Flash\Flashstore.d" - -C_SRCS__QUOTED += \ -"../Drivers/On_Chip_Flash/Flashstore.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/619f368b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/619f368b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/619f368b9571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/a07246e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/a07246e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/a07246e68f71001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/a1e1458b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/a1e1458b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/a1e1458b9571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/c045cd429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/c045cd429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/c045cd429b71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/e08831398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/e08831398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/e08831398871001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/f0703e18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/f0703e18b66e001a173da96cce181ab0 deleted file mode 100644 index 248408ccc..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/f0703e18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c - -C_DEPS += \ -./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d - -OBJS += \ -./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/f089a218b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/f089a218b66e001a173da96cce181ab0 deleted file mode 100644 index ae44b8e39..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/f089a218b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/10d5bcab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/10d5bcab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/10d5bcab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/9099079b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/9099079b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/9099079b8f71001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/90a699e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/90a699e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/90a699e78f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/c0394129c36e001a17dd93e105fd0cb6 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/c0394129c36e001a17dd93e105fd0cb6 deleted file mode 100644 index 2f8445d12..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/c0394129c36e001a17dd93e105fd0cb6 +++ /dev/null @@ -1,97 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -/* ----------------------- Platform includes --------------------------------*/ -#include "port.h" - -static const UCHAR aucCRCHi[] = { - 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, - 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, - 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, - 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, - 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, - 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, - 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, - 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, - 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, - 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, - 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, - 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, - 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, - 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, - 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, - 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, - 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, - 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, - 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, - 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, - 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, - 0x00, 0xC1, 0x81, 0x40 -}; - -static const UCHAR aucCRCLo[] = { - 0x00, 0xC0, 0xC1, 0x01, 0xC3, 0x03, 0x02, 0xC2, 0xC6, 0x06, 0x07, 0xC7, - 0x05, 0xC5, 0xC4, 0x04, 0xCC, 0x0C, 0x0D, 0xCD, 0x0F, 0xCF, 0xCE, 0x0E, - 0x0A, 0xCA, 0xCB, 0x0B, 0xC9, 0x09, 0x08, 0xC8, 0xD8, 0x18, 0x19, 0xD9, - 0x1B, 0xDB, 0xDA, 0x1A, 0x1E, 0xDE, 0xDF, 0x1F, 0xDD, 0x1D, 0x1C, 0xDC, - 0x14, 0xD4, 0xD5, 0x15, 0xD7, 0x17, 0x16, 0xD6, 0xD2, 0x12, 0x13, 0xD3, - 0x11, 0xD1, 0xD0, 0x10, 0xF0, 0x30, 0x31, 0xF1, 0x33, 0xF3, 0xF2, 0x32, - 0x36, 0xF6, 0xF7, 0x37, 0xF5, 0x35, 0x34, 0xF4, 0x3C, 0xFC, 0xFD, 0x3D, - 0xFF, 0x3F, 0x3E, 0xFE, 0xFA, 0x3A, 0x3B, 0xFB, 0x39, 0xF9, 0xF8, 0x38, - 0x28, 0xE8, 0xE9, 0x29, 0xEB, 0x2B, 0x2A, 0xEA, 0xEE, 0x2E, 0x2F, 0xEF, - 0x2D, 0xED, 0xEC, 0x2C, 0xE4, 0x24, 0x25, 0xE5, 0x27, 0xE7, 0xE6, 0x26, - 0x22, 0xE2, 0xE3, 0x23, 0xE1, 0x21, 0x20, 0xE0, 0xA0, 0x60, 0x61, 0xA1, - 0x63, 0xA3, 0xA2, 0x62, 0x66, 0xA6, 0xA7, 0x67, 0xA5, 0x65, 0x64, 0xA4, - 0x6C, 0xAC, 0xAD, 0x6D, 0xAF, 0x6F, 0x6E, 0xAE, 0xAA, 0x6A, 0x6B, 0xAB, - 0x69, 0xA9, 0xA8, 0x68, 0x78, 0xB8, 0xB9, 0x79, 0xBB, 0x7B, 0x7A, 0xBA, - 0xBE, 0x7E, 0x7F, 0xBF, 0x7D, 0xBD, 0xBC, 0x7C, 0xB4, 0x74, 0x75, 0xB5, - 0x77, 0xB7, 0xB6, 0x76, 0x72, 0xB2, 0xB3, 0x73, 0xB1, 0x71, 0x70, 0xB0, - 0x50, 0x90, 0x91, 0x51, 0x93, 0x53, 0x52, 0x92, 0x96, 0x56, 0x57, 0x97, - 0x55, 0x95, 0x94, 0x54, 0x9C, 0x5C, 0x5D, 0x9D, 0x5F, 0x9F, 0x9E, 0x5E, - 0x5A, 0x9A, 0x9B, 0x5B, 0x99, 0x59, 0x58, 0x98, 0x88, 0x48, 0x49, 0x89, - 0x4B, 0x8B, 0x8A, 0x4A, 0x4E, 0x8E, 0x8F, 0x4F, 0x8D, 0x4D, 0x4C, 0x8C, - 0x44, 0x84, 0x85, 0x45, 0x87, 0x47, 0x46, 0x86, 0x82, 0x42, 0x43, 0x83, - 0x41, 0x81, 0x80, 0x40 -}; - -USHORT -usMBCRC16( UCHAR * pucFrame, USHORT usLen ) -{ - UCHAR ucCRCHi = 0xFF; - UCHAR ucCRCLo = 0xFF; - int iIndex; - - while( usLen-- ) - { - iIndex = ucCRCLo ^ *( pucFrame++ ); - ucCRCLo = ( UCHAR )( ucCRCHi ^ aucCRCHi[iIndex] ); - ucCRCHi = aucCRCLo[iIndex]; - } - return ( USHORT )( ucCRCHi << 8 | ucCRCLo ); -} diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/d0f058b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/d0f058b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/d0f058b58771001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/f01261b7c06e001a17dd93e105fd0cb6 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/f01261b7c06e001a17dd93e105fd0cb6 deleted file mode 100644 index 2cf1144f1..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/f01261b7c06e001a17dd93e105fd0cb6 +++ /dev/null @@ -1,121 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -/* ----------------------- System includes ----------------------------------*/ -#include "stdlib.h" -#include "string.h" - -/* ----------------------- Platform includes --------------------------------*/ -#include "port.h" - -/* ----------------------- Modbus includes ----------------------------------*/ -#include "mb.h" -#include "mbframe.h" -#include "mbproto.h" -#include "mbconfig.h" - -/* ----------------------- Defines ------------------------------------------*/ -#define MB_PDU_FUNC_READ_ADDR_OFF ( MB_PDU_DATA_OFF ) -#define MB_PDU_FUNC_READ_REGCNT_OFF ( MB_PDU_DATA_OFF + 2 ) -#define MB_PDU_FUNC_READ_SIZE ( 4 ) -#define MB_PDU_FUNC_READ_REGCNT_MAX ( 0x007D ) - -#define MB_PDU_FUNC_READ_RSP_BYTECNT_OFF ( MB_PDU_DATA_OFF ) - -/* ----------------------- Static functions ---------------------------------*/ -eMBException prveMBError2Exception( eMBErrorCode eErrorCode ); - -/* ----------------------- Start implementation -----------------------------*/ -#if MB_FUNC_READ_INPUT_ENABLED > 0 - -eMBException -eMBFuncReadInputRegister( UCHAR * pucFrame, USHORT * usLen ) -{ - USHORT usRegAddress; - USHORT usRegCount; - UCHAR *pucFrameCur; - - eMBException eStatus = MB_EX_NONE; - eMBErrorCode eRegStatus; - - if( *usLen == ( MB_PDU_FUNC_READ_SIZE + MB_PDU_SIZE_MIN ) ) - { - usRegAddress = ( USHORT )( pucFrame[MB_PDU_FUNC_READ_ADDR_OFF] << 8 ); - usRegAddress |= ( USHORT )( pucFrame[MB_PDU_FUNC_READ_ADDR_OFF + 1] ); - usRegAddress++; - - usRegCount = ( USHORT )( pucFrame[MB_PDU_FUNC_READ_REGCNT_OFF] << 8 ); - usRegCount |= ( USHORT )( pucFrame[MB_PDU_FUNC_READ_REGCNT_OFF + 1] ); - - /* Check if the number of registers to read is valid. If not - * return Modbus illegal data value exception. - */ - if( ( usRegCount >= 1 ) - && ( usRegCount < MB_PDU_FUNC_READ_REGCNT_MAX ) ) - { - /* Set the current PDU data pointer to the beginning. */ - pucFrameCur = &pucFrame[MB_PDU_FUNC_OFF]; - *usLen = MB_PDU_FUNC_OFF; - - /* First byte contains the function code. */ - *pucFrameCur++ = MB_FUNC_READ_INPUT_REGISTER; - *usLen += 1; - - /* Second byte in the response contain the number of bytes. */ - *pucFrameCur++ = ( UCHAR )( usRegCount * 2 ); - *usLen += 1; - - eRegStatus = - eMBRegInputCB( pucFrameCur, usRegAddress, usRegCount ); - - /* If an error occured convert it into a Modbus exception. */ - if( eRegStatus != MB_ENOERR ) - { - eStatus = prveMBError2Exception( eRegStatus ); - } - else - { - *usLen += usRegCount * 2; - } - } - else - { - eStatus = MB_EX_ILLEGAL_DATA_VALUE; - } - } - else - { - /* Can't be a valid read input register request because the length - * is incorrect. */ - eStatus = MB_EX_ILLEGAL_DATA_VALUE; - } - return eStatus; -} - -#endif diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/f059bbe39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/f059bbe39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/f059bbe39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/30c5df4c0c6d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/30c5df4c0c6d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/30c5df4c0c6d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/41cfd36e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/41cfd36e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/41cfd36e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/50e9388b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/50e9388b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/50e9388b9571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/515a3b8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/515a3b8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/515a3b8b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/51bedfb38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/51bedfb38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/51bedfb38771001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/51f22d6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/51f22d6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/51f22d6e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/70549e398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/70549e398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/70549e398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/80cc27e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/80cc27e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/80cc27e39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/905dfaacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/905dfaacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 1e323df70..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/905dfaacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/a0dc988eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/a0dc988eb56e001a173da96cce181ab0 deleted file mode 100644 index 790d8e600..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/a0dc988eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/General/GeneralHardware.c \ -../Modules/General/MachineStatus.c \ -../Modules/General/Safety.c \ -../Modules/General/buttons.c \ -../Modules/General/process.c - -C_DEPS += \ -./Modules/General/GeneralHardware.d \ -./Modules/General/MachineStatus.d \ -./Modules/General/Safety.d \ -./Modules/General/buttons.d \ -./Modules/General/process.d - -OBJS += \ -./Modules/General/GeneralHardware.obj \ -./Modules/General/MachineStatus.obj \ -./Modules/General/Safety.obj \ -./Modules/General/buttons.obj \ -./Modules/General/process.obj - -OBJS__QUOTED += \ -"Modules\General\GeneralHardware.obj" \ -"Modules\General\MachineStatus.obj" \ -"Modules\General\Safety.obj" \ -"Modules\General\buttons.obj" \ -"Modules\General\process.obj" - -C_DEPS__QUOTED += \ -"Modules\General\GeneralHardware.d" \ -"Modules\General\MachineStatus.d" \ -"Modules\General\Safety.d" \ -"Modules\General\buttons.d" \ -"Modules\General\process.d" - -C_SRCS__QUOTED += \ -"../Modules/General/GeneralHardware.c" \ -"../Modules/General/MachineStatus.c" \ -"../Modules/General/Safety.c" \ -"../Modules/General/buttons.c" \ -"../Modules/General/process.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/00dd7fe78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/00dd7fe78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/00dd7fe78f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/10787d429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/10787d429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/10787d429b71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/20129acc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/20129acc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/20129acc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/205a9b6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/205a9b6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/205a9b6e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/20dcfe998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/20dcfe998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/20dcfe998f71001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/80d520aaf46c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/80d520aaf46c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/80d520aaf46c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/a0f3776e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/a0f3776e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/a0f3776e8771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/b1e2709b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/b1e2709b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/b1e2709b8f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/c0b85d18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/c0b85d18b66e001a173da96cce181ab0 deleted file mode 100644 index cfcf6fe0b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/c0b85d18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c - -C_DEPS += \ -./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d - -OBJS += \ -./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/e050b4cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/e050b4cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/e050b4cc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/e0abd9ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/e0abd9ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/e0abd9ab9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/304cd7a99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/304cd7a99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/304cd7a99071001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/30fc84ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/30fc84ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/30fc84ab9071001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/32fdd0398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/32fdd0398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/32fdd0398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/703fe0398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/703fe0398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/703fe0398871001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/d0622e419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/d0622e419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/d0622e419b71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/e0f933398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/e0f933398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/e0f933398871001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/0018e9b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/0018e9b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/0018e9b48771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/20138de29a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/20138de29a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/20138de29a71001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/3057ce429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/3057ce429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/3057ce429b71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/51fef68a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/51fef68a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/51fef68a9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/80cdd28db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/80cdd28db56e001a173da96cce181ab0 deleted file mode 100644 index 368691401..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/80cdd28db56e001a173da96cce181ab0 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Heater/ADS1220.c \ -../Drivers/Heater/Heater.c \ -../Drivers/Heater/TemperatureSensor.c - -C_DEPS += \ -./Drivers/Heater/ADS1220.d \ -./Drivers/Heater/Heater.d \ -./Drivers/Heater/TemperatureSensor.d - -OBJS += \ -./Drivers/Heater/ADS1220.obj \ -./Drivers/Heater/Heater.obj \ -./Drivers/Heater/TemperatureSensor.obj - -OBJS__QUOTED += \ -"Drivers\Heater\ADS1220.obj" \ -"Drivers\Heater\Heater.obj" \ -"Drivers\Heater\TemperatureSensor.obj" - -C_DEPS__QUOTED += \ -"Drivers\Heater\ADS1220.d" \ -"Drivers\Heater\Heater.d" \ -"Drivers\Heater\TemperatureSensor.d" - -C_SRCS__QUOTED += \ -"../Drivers/Heater/ADS1220.c" \ -"../Drivers/Heater/Heater.c" \ -"../Drivers/Heater/TemperatureSensor.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/b0535cadb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/b0535cadb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 63bbc10a3..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/b0535cadb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/b09b5aac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/b09b5aac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/b09b5aac9071001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/e05d9a16b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/e05d9a16b66e001a173da96cce181ab0 deleted file mode 100644 index e842fb84f..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/e05d9a16b66e001a173da96cce181ab0 +++ /dev/null @@ -1,62 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Connection/ConnectRequest.pb-c.c \ -../Communication/PMR/Connection/ConnectResponse.pb-c.c \ -../Communication/PMR/Connection/DeviceInformation.pb-c.c \ -../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ -../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ -../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ -../Communication/PMR/Connection/KeepAliveResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/Connection/ConnectRequest.pb-c.d \ -./Communication/PMR/Connection/ConnectResponse.pb-c.d \ -./Communication/PMR/Connection/DeviceInformation.pb-c.d \ -./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ -./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ -./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ -./Communication/PMR/Connection/KeepAliveResponse.pb-c.d - -OBJS += \ -./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ -./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ -./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ -./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ -./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ -./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ -./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ -"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ -"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ -"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ -"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ -"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ -"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ -"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ -"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ -"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ -"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ -"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ -"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ -"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ -"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ -"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ -"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ -"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ -"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/101d48b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/101d48b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/101d48b48771001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/10508f18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/10508f18b66e001a173da96cce181ab0 deleted file mode 100644 index 1e323df70..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/10508f18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/110bceb38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/110bceb38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/110bceb38771001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/114be58a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/114be58a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/114be58a9571001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/2039338a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/2039338a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/2039338a9571001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/302e61b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/302e61b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/302e61b58771001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/408afc2a7471001a1c4ce2378ee7c6e4 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/408afc2a7471001a1c4ce2378ee7c6e4 new file mode 100644 index 000000000..33d49c995 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/408afc2a7471001a1c4ce2378ee7c6e4 @@ -0,0 +1,164 @@ +/* + * WHS_Uart.c + * + * Created on: Mar 23, 2020 + * Author: avi + * + * http://programmersought.com/article/83381867703/;jsessionid=DD1FBDEB95EDA0AE1B8592DEA7F7DFA4 + */ + +#include +#include +#include "inc/hw_memmap.h" +#include "inc/hw_types.h" +#include "driverlib/gpio.h" +#include "driverlib/pin_map.h" +#include "driverlib/rom.h" +#include "driverlib/rom_map.h" +#include "driverlib/sysctl.h" +#include "driverlib/interrupt.h" +#include "utils/uartstdio.h" +#include "driverlib/uart.h" + +#include + +uint8_t Uart3_Tx_Buff[100]; +uint8_t Uart3_Rx_Buff[100]; + +void InitConsole_WHS_UART3(void) +{ + uint32_t ui32SysClock = MAP_SysCtlClockFreqSet((SYSCTL_XTAL_25MHZ | SYSCTL_OSC_MAIN | SYSCTL_USE_PLL | SYSCTL_CFG_VCO_480), SYS_CLK_FREQ); + + // + // Enable GPIO port A which is used for UART0 pins. + // TODO: change this to whichever GPIO port you are using. + // + SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOA); + + SysCtlDelay(3); + + // + // Configure the pin muxing for UART0 functions on port A0 and A1. + // This step is not necessary if your part does not support pin muxing. + // TODO: change this to select the port/pin you are using. + // + MAP_GPIOPinConfigure(GPIO_PA4_U3RX); + MAP_GPIOPinConfigure(GPIO_PA5_U3TX); + + // + // Enable UART0 so that we can configure the clock. + // + SysCtlPeripheralEnable(SYSCTL_PERIPH_UART3); + + SysCtlDelay(3); + + // + // Use the internal 16MHz oscillator as the UART clock source. + // + UARTClockSourceSet(UART3_BASE, UART_CLOCK_PIOSC); + + // + // Select the alternate (UART) function for these pins. + // TODO: change this to select the port/pin you are using. + // + MAP_GPIOPinTypeUART(GPIO_PORTA_BASE, GPIO_PIN_4 | GPIO_PIN_5); + + // + // Initialize the UART for console I/O. + // + //UARTStdioConfig(0, 115200, 16000000); + + // Configure the serial port: + //serial number/clock/baud rate/format + //ROM_UARTConfigSetExpClk(UART3_BASE,ROM_SysCtlClockGet(), 115200, (UART_CONFIG_WLEN_8| UART_CONFIG_STOP_ONE |UART_CONFIG_PAR_NONE)); + MAP_UARTConfigSetExpClk(UART7_BASE, ui32SysClock, 115200,(UART_CONFIG_WLEN_8 |UART_CONFIG_STOP_ONE | UART_CONFIG_PAR_NONE)); + + + +} + + + +uint8_t Uart3_Transmit(uint8_t * Uart3_Tx_Buff, uint32_t Length) +{ + uint8_t i,Status = OK; + + for(i=0;i> 1) & 0x7FFF; + if (Bit) CRC_REGISTER = CRC_REGISTER ^ CONSTANT; + } + } + + return CRC_REGISTER; +} + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/607774429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/607774429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/607774429b71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/702995e29a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/702995e29a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/702995e29a71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/70600b6c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/70600b6c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/70600b6c8771001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/802651519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/802651519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/802651519571001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/90a7daa99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/90a7daa99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/90a7daa99071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/b011838b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/b011838b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/b011838b9571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/b0f0fb6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/b0f0fb6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/b0f0fb6e8771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/c0a41ccc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/c0a41ccc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/c0a41ccc9071001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/c0d9b26e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/c0d9b26e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/c0d9b26e8771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/d0e919e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/d0e919e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/d0e919e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e0a6896e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e0a6896e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e0a6896e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/f04055cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/f04055cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/f04055cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/f0521aabb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/f0521aabb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 5880cb66d..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/f0521aabb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,57 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/50fcd3e19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/50fcd3e19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/50fcd3e19a71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/609cdcacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/609cdcacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 6735c78b9..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/609cdcacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/a052b9ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/a052b9ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/a052b9ab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/c0130fac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/c0130fac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/c0130fac9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/c0a96f8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/c0a96f8eb56e001a173da96cce181ab0 deleted file mode 100644 index d58afd1c9..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/c0a96f8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/flash_ram/FlashProgram.c \ -../Drivers/flash_ram/MCU_E2Prom.c - -C_DEPS += \ -./Drivers/flash_ram/FlashProgram.d \ -./Drivers/flash_ram/MCU_E2Prom.d - -OBJS += \ -./Drivers/flash_ram/FlashProgram.obj \ -./Drivers/flash_ram/MCU_E2Prom.obj - -OBJS__QUOTED += \ -"Drivers\flash_ram\FlashProgram.obj" \ -"Drivers\flash_ram\MCU_E2Prom.obj" - -C_DEPS__QUOTED += \ -"Drivers\flash_ram\FlashProgram.d" \ -"Drivers\flash_ram\MCU_E2Prom.d" - -C_SRCS__QUOTED += \ -"../Drivers/flash_ram/FlashProgram.c" \ -"../Drivers/flash_ram/MCU_E2Prom.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/d018e78db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/d018e78db56e001a173da96cce181ab0 deleted file mode 100644 index c2aaaeb6f..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/24/d018e78db56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/1086d48eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/1086d48eb56e001a173da96cce181ab0 deleted file mode 100644 index 5712cfaab..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/1086d48eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,204 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/2029d8398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/2029d8398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/2029d8398871001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/503f9718b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/503f9718b66e001a173da96cce181ab0 deleted file mode 100644 index f57d10d43..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/503f9718b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/60d989e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/60d989e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/60d989e58f71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/70e0ace78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/70e0ace78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/70e0ace78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/9059226e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/9059226e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/9059226e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/b0dc60acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/b0dc60acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 8cce4b3ae..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/b0dc60acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c - -C_DEPS += \ -./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d - -OBJS += \ -./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj - -OBJS__QUOTED += \ -"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" - -C_DEPS__QUOTED += \ -"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" - -C_SRCS__QUOTED += \ -"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/e07c05e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/e07c05e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/e07c05e78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/f043f0b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/f043f0b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/f043f0b48771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/00abbf6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/00abbf6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/00abbf6e8771001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/10af75aa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/10af75aa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/10af75aa9071001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/30363cb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/30363cb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/30363cb48771001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/8067d1388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/8067d1388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/8067d1388871001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/9075fc8db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/9075fc8db56e001a173da96cce181ab0 deleted file mode 100644 index c0c254965..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/9075fc8db56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/a0cc878b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/a0cc878b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/a0cc878b9571001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/c0e73fac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/c0e73fac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/c0e73fac9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/d001d68db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/d001d68db56e001a173da96cce181ab0 deleted file mode 100644 index f9003f42f..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/d001d68db56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c - -C_DEPS += \ -./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d - -OBJS += \ -./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/d04434509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/d04434509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/d04434509571001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/d1054a6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/d1054a6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/d1054a6e8771001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/d1764c6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/d1764c6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/d1764c6e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/e035ffe29a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/e035ffe29a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/e035ffe29a71001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/f0a853429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/f0a853429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/26/f0a853429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/40006cacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/40006cacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index eb43d31e6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/40006cacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/40369218b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/40369218b66e001a173da96cce181ab0 deleted file mode 100644 index 66a427fa3..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/40369218b66e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Motors/Motor.c \ -../Drivers/Motors/MotorActions.c - -C_DEPS += \ -./Drivers/Motors/Motor.d \ -./Drivers/Motors/MotorActions.d - -OBJS += \ -./Drivers/Motors/Motor.obj \ -./Drivers/Motors/MotorActions.obj - -OBJS__QUOTED += \ -"Drivers\Motors\Motor.obj" \ -"Drivers\Motors\MotorActions.obj" - -C_DEPS__QUOTED += \ -"Drivers\Motors\Motor.d" \ -"Drivers\Motors\MotorActions.d" - -C_SRCS__QUOTED += \ -"../Drivers/Motors/Motor.c" \ -"../Drivers/Motors/MotorActions.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/40db9c8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/40db9c8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/40db9c8b9571001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/506894b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/506894b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/506894b48771001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/90b813e88f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/90b813e88f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/90b813e88f71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/a02ca0cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/a02ca0cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/a02ca0cc9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/a0322f82f56c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/a0322f82f56c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/a0322f82f56c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/a0db6de78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/a0db6de78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/a0db6de78f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/a158429b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/a158429b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/a158429b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/b08b33ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/b08b33ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/b08b33ac9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/c05d528eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/c05d528eb56e001a173da96cce181ab0 deleted file mode 100644 index 805d9d685..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/c05d528eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c - -C_DEPS += \ -./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d - -OBJS += \ -./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj - -OBJS__QUOTED += \ -"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" - -C_DEPS__QUOTED += \ -"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" - -C_SRCS__QUOTED += \ -"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/d0cc0dcb9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/d0cc0dcb9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/d0cc0dcb9071001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/002da7b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/002da7b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/002da7b48771001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/10bf158db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/10bf158db56e001a173da96cce181ab0 deleted file mode 100644 index f340107b5..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/10bf158db56e001a173da96cce181ab0 +++ /dev/null @@ -1,170 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ -../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ -../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ -../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ -../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ -../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ -../Communication/PMR/Printing/JobBrushStop.pb-c.c \ -../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ -../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ -../Communication/PMR/Printing/JobDispenser.pb-c.c \ -../Communication/PMR/Printing/JobRequest.pb-c.c \ -../Communication/PMR/Printing/JobResponse.pb-c.c \ -../Communication/PMR/Printing/JobSegment.pb-c.c \ -../Communication/PMR/Printing/JobSpool.pb-c.c \ -../Communication/PMR/Printing/JobSpoolType.pb-c.c \ -../Communication/PMR/Printing/JobStatus.pb-c.c \ -../Communication/PMR/Printing/JobTicket.pb-c.c \ -../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ -../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ -../Communication/PMR/Printing/ProcessParameters.pb-c.c \ -../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ -../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ -../Communication/PMR/Printing/ThreadParameters.pb-c.c \ -../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ -../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ -./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ -./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ -./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ -./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ -./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ -./Communication/PMR/Printing/JobBrushStop.pb-c.d \ -./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ -./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ -./Communication/PMR/Printing/JobDispenser.pb-c.d \ -./Communication/PMR/Printing/JobRequest.pb-c.d \ -./Communication/PMR/Printing/JobResponse.pb-c.d \ -./Communication/PMR/Printing/JobSegment.pb-c.d \ -./Communication/PMR/Printing/JobSpool.pb-c.d \ -./Communication/PMR/Printing/JobSpoolType.pb-c.d \ -./Communication/PMR/Printing/JobStatus.pb-c.d \ -./Communication/PMR/Printing/JobTicket.pb-c.d \ -./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ -./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ -./Communication/PMR/Printing/ProcessParameters.pb-c.d \ -./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ -./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ -./Communication/PMR/Printing/ThreadParameters.pb-c.d \ -./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ -./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d - -OBJS += \ -./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ -./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ -./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ -./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ -./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ -./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ -./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ -./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ -./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ -./Communication/PMR/Printing/JobDispenser.pb-c.obj \ -./Communication/PMR/Printing/JobRequest.pb-c.obj \ -./Communication/PMR/Printing/JobResponse.pb-c.obj \ -./Communication/PMR/Printing/JobSegment.pb-c.obj \ -./Communication/PMR/Printing/JobSpool.pb-c.obj \ -./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ -./Communication/PMR/Printing/JobStatus.pb-c.obj \ -./Communication/PMR/Printing/JobTicket.pb-c.obj \ -./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ -./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ -./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ -./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ -./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ -./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ -./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ -./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ -"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ -"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ -"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ -"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ -"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ -"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ -"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ -"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ -"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ -"Communication\PMR\Printing\JobRequest.pb-c.obj" \ -"Communication\PMR\Printing\JobResponse.pb-c.obj" \ -"Communication\PMR\Printing\JobSegment.pb-c.obj" \ -"Communication\PMR\Printing\JobSpool.pb-c.obj" \ -"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ -"Communication\PMR\Printing\JobStatus.pb-c.obj" \ -"Communication\PMR\Printing\JobTicket.pb-c.obj" \ -"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ -"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ -"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ -"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ -"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ -"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ -"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ -"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ -"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ -"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ -"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ -"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ -"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ -"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ -"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ -"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ -"Communication\PMR\Printing\JobDispenser.pb-c.d" \ -"Communication\PMR\Printing\JobRequest.pb-c.d" \ -"Communication\PMR\Printing\JobResponse.pb-c.d" \ -"Communication\PMR\Printing\JobSegment.pb-c.d" \ -"Communication\PMR\Printing\JobSpool.pb-c.d" \ -"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ -"Communication\PMR\Printing\JobStatus.pb-c.d" \ -"Communication\PMR\Printing\JobTicket.pb-c.d" \ -"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ -"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ -"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ -"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ -"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ -"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ -"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ -"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ -"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ -"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ -"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ -"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ -"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ -"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ -"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ -"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ -"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ -"../Communication/PMR/Printing/JobRequest.pb-c.c" \ -"../Communication/PMR/Printing/JobResponse.pb-c.c" \ -"../Communication/PMR/Printing/JobSegment.pb-c.c" \ -"../Communication/PMR/Printing/JobSpool.pb-c.c" \ -"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ -"../Communication/PMR/Printing/JobStatus.pb-c.c" \ -"../Communication/PMR/Printing/JobTicket.pb-c.c" \ -"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ -"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ -"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ -"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ -"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ -"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ -"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ -"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/30fdd0398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/30fdd0398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/30fdd0398871001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/506f9b16b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/506f9b16b66e001a173da96cce181ab0 deleted file mode 100644 index a15ee2b82..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/506f9b16b66e001a173da96cce181ab0 +++ /dev/null @@ -1,57 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/70b54ccc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/70b54ccc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/70b54ccc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/a0f0e2429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/a0f0e2429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/a0f0e2429b71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/b011b3e29a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/b011b3e29a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/b011b3e29a71001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/e0b48f8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/e0b48f8eb56e001a173da96cce181ab0 deleted file mode 100644 index b2b0260e4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/e0b48f8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/0012f0b38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/0012f0b38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/0012f0b38771001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/109ae5cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/109ae5cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/109ae5cc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/10e90f4f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/10e90f4f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/10e90f4f9571001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/2101e4998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/2101e4998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/2101e4998f71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/405c2d429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/405c2d429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/405c2d429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/40cfd36e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/40cfd36e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/40cfd36e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/5010296e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/5010296e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/5010296e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/50d120adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/50d120adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 42f679a53..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/50d120adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/70444ce39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/70444ce39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/70444ce39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/8060fdab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/8060fdab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/8060fdab9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/907e4f8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/907e4f8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/907e4f8b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/a180c5388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/a180c5388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/a180c5388871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/b03395ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/b03395ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/b03395ac9071001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/b06c1d6d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/b06c1d6d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/b06c1d6d8771001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/c08cabe19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/c08cabe19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/c08cabe19a71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/c0b2acacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/c0b2acacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index b6e6616cd..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/c0b2acacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/f0601718b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/f0601718b66e001a173da96cce181ab0 deleted file mode 100644 index 982770da7..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/f0601718b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/0115174f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/0115174f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/0115174f9571001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/800abaaab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/800abaaab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index ddddab698..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/800abaaab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,106 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/803df14e9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/803df14e9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/803df14e9571001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/a07e88ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/a07e88ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/a07e88ab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/b075b518b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/b075b518b66e001a173da96cce181ab0 deleted file mode 100644 index d58afd1c9..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/b075b518b66e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/flash_ram/FlashProgram.c \ -../Drivers/flash_ram/MCU_E2Prom.c - -C_DEPS += \ -./Drivers/flash_ram/FlashProgram.d \ -./Drivers/flash_ram/MCU_E2Prom.d - -OBJS += \ -./Drivers/flash_ram/FlashProgram.obj \ -./Drivers/flash_ram/MCU_E2Prom.obj - -OBJS__QUOTED += \ -"Drivers\flash_ram\FlashProgram.obj" \ -"Drivers\flash_ram\MCU_E2Prom.obj" - -C_DEPS__QUOTED += \ -"Drivers\flash_ram\FlashProgram.d" \ -"Drivers\flash_ram\MCU_E2Prom.d" - -C_SRCS__QUOTED += \ -"../Drivers/flash_ram/FlashProgram.c" \ -"../Drivers/flash_ram/MCU_E2Prom.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/100b6ae78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/100b6ae78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/100b6ae78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/80a276da6d6e001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/80a276da6d6e001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/80a276da6d6e001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/b01cfdacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/b01cfdacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 66a427fa3..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/b01cfdacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Motors/Motor.c \ -../Drivers/Motors/MotorActions.c - -C_DEPS += \ -./Drivers/Motors/Motor.d \ -./Drivers/Motors/MotorActions.d - -OBJS += \ -./Drivers/Motors/Motor.obj \ -./Drivers/Motors/MotorActions.obj - -OBJS__QUOTED += \ -"Drivers\Motors\Motor.obj" \ -"Drivers\Motors\MotorActions.obj" - -C_DEPS__QUOTED += \ -"Drivers\Motors\Motor.d" \ -"Drivers\Motors\MotorActions.d" - -C_SRCS__QUOTED += \ -"../Drivers/Motors/Motor.c" \ -"../Drivers/Motors/MotorActions.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/d01ab8509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/d01ab8509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/d01ab8509571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/0008278eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/0008278eb56e001a173da96cce181ab0 deleted file mode 100644 index f38ee981c..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/0008278eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ -../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ -./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ -./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ -"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ -"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ -"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/2001e4998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/2001e4998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/2001e4998f71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/30b790e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/30b790e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/30b790e58f71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40626fe78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40626fe78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40626fe78f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40ab57e29a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40ab57e29a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40ab57e29a71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40c85fcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40c85fcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40c85fcc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/50457d8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/50457d8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/50457d8b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/50c43d8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/50c43d8eb56e001a173da96cce181ab0 deleted file mode 100644 index 66a427fa3..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/50c43d8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Motors/Motor.c \ -../Drivers/Motors/MotorActions.c - -C_DEPS += \ -./Drivers/Motors/Motor.d \ -./Drivers/Motors/MotorActions.d - -OBJS += \ -./Drivers/Motors/Motor.obj \ -./Drivers/Motors/MotorActions.obj - -OBJS__QUOTED += \ -"Drivers\Motors\Motor.obj" \ -"Drivers\Motors\MotorActions.obj" - -C_DEPS__QUOTED += \ -"Drivers\Motors\Motor.d" \ -"Drivers\Motors\MotorActions.d" - -C_SRCS__QUOTED += \ -"../Drivers/Motors/Motor.c" \ -"../Drivers/Motors/MotorActions.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/6074ddb38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/6074ddb38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/6074ddb38771001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/a0c4dce39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/a0c4dce39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/a0c4dce39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/e013b3b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/e013b3b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/e013b3b48771001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/e0605de78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/e0605de78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/e0605de78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/305cfea99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/305cfea99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/305cfea99071001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/80187c429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/80187c429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/80187c429b71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/a0608dab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/a0608dab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/a0608dab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/b01e96e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/b01e96e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/b01e96e39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/b0cfc3e19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/b0cfc3e19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/b0cfc3e19a71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/e17471509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/e17471509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/e17471509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/f047c96e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/f047c96e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/f047c96e8771001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/107193429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/107193429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/107193429b71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/402f36e49a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/402f36e49a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/402f36e49a71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/50417916b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/50417916b66e001a173da96cce181ab0 deleted file mode 100644 index 8c01da5af..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/50417916b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/50dec9e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/50dec9e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/50dec9e78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/6038ec1ed66c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/6038ec1ed66c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/6038ec1ed66c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/b04de1509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/b04de1509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/b04de1509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/b0a924429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/b0a924429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/b0a924429b71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/e0b750419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/e0b750419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/e0b750419b71001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/f06ce08eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/f06ce08eb56e001a173da96cce181ab0 deleted file mode 100644 index cda29b385..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/f06ce08eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/203c4f429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/203c4f429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/203c4f429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/3073109b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/3073109b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/3073109b8f71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/5010e2ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/5010e2ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/5010e2ab9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/506d189c8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/506d189c8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/506d189c8f71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/50fe67ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/50fe67ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/50fe67ab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/607142cb9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/607142cb9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/607142cb9071001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/608682e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/608682e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/608682e58f71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/8085cc388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/8085cc388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/8085cc388871001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/90f0e1cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/90f0e1cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/90f0e1cc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/a09700b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/a09700b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/a09700b58771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/b07f71e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/b07f71e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/b07f71e39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/d061d6a99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/d061d6a99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/d061d6a99071001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/d0ea41419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/d0ea41419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/d0ea41419b71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/10c0f5509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/10c0f5509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/10c0f5509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/2036d98db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/2036d98db56e001a173da96cce181ab0 deleted file mode 100644 index 9c82ff358..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/2036d98db56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/DAC/Blower.c - -C_DEPS += \ -./Drivers/I2C_Communication/DAC/Blower.d - -OBJS += \ -./Drivers/I2C_Communication/DAC/Blower.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\DAC\Blower.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\DAC\Blower.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/DAC/Blower.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/205a68b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/205a68b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/205a68b58771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/30e910519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/30e910519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/30e910519571001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/5042a0429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/5042a0429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/5042a0429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/700749b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/700749b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/700749b48771001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/70cc96429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/70cc96429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/70cc96429b71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/d12639509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/d12639509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/d12639509571001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/d12f76509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/d12f76509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/d12f76509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/207b228b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/207b228b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/207b228b9571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/30e5a416b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/30e5a416b66e001a173da96cce181ab0 deleted file mode 100644 index 50c4bbea0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/30e5a416b66e001a173da96cce181ab0 +++ /dev/null @@ -1,86 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ -../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ -../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ -../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ -../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ -../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ -../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ -../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ -../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ -../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ -../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ -./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ -./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ -./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ -./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ -./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ -./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ -./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ -./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ -./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ -./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d - -OBJS += \ -./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ -./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ -./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ -./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ -./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ -./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ -./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ -./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ -./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ -./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ -./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ -"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ -"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ -"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ -"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ -"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ -"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ -"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ -"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ -"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ -"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ -"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ -"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ -"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ -"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ -"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ -"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ -"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ -"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ -"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ -"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ -"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ -"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ -"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ -"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ -"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ -"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ -"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ -"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ -"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ -"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/401d1b8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/401d1b8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/401d1b8a9571001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/608511e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/608511e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/608511e39a71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/b07f6fcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/b07f6fcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/b07f6fcc9071001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/c04cab398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/c04cab398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/c04cab398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/c0f634e49a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/c0f634e49a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/c0f634e49a71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/d07164429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/d07164429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/d07164429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/1020a6cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/1020a6cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/1020a6cc9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/311c628b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/311c628b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/311c628b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/a03d74acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/a03d74acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 69342426c..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/a03d74acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/b009d8e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/b009d8e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/b009d8e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/d0d51c8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/d0d51c8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/d0d51c8b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/f0ae2c6d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/f0ae2c6d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/f0ae2c6d8771001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/0028758eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/0028758eb56e001a173da96cce181ab0 deleted file mode 100644 index 7e6705062..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/0028758eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/AlarmHandling/AlarmHandling.c - -C_DEPS += \ -./Modules/AlarmHandling/AlarmHandling.d - -OBJS += \ -./Modules/AlarmHandling/AlarmHandling.obj - -OBJS__QUOTED += \ -"Modules\AlarmHandling\AlarmHandling.obj" - -C_DEPS__QUOTED += \ -"Modules\AlarmHandling\AlarmHandling.d" - -C_SRCS__QUOTED += \ -"../Modules/AlarmHandling/AlarmHandling.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/20a2c2509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/20a2c2509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/20a2c2509571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/4077e4429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/4077e4429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/4077e4429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/80b6ea18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/80b6ea18b66e001a173da96cce181ab0 deleted file mode 100644 index 93a09e27b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/80b6ea18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,188 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/Stubs_Handler/Calculate.c \ -../Modules/Stubs_Handler/Progress.c \ -../Modules/Stubs_Handler/StubRealTimeUsage.c \ -../Modules/Stubs_Handler/Stub_Cartridge.c \ -../Modules/Stubs_Handler/Stub_Dancer.c \ -../Modules/Stubs_Handler/Stub_Dispenser.c \ -../Modules/Stubs_Handler/Stub_ExtFlash.c \ -../Modules/Stubs_Handler/Stub_FPGARWReg.c \ -../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ -../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ -../Modules/Stubs_Handler/Stub_GPIO.c \ -../Modules/Stubs_Handler/Stub_HW_Version.c \ -../Modules/Stubs_Handler/Stub_Heater.c \ -../Modules/Stubs_Handler/Stub_I2C.c \ -../Modules/Stubs_Handler/Stub_IntADC.c \ -../Modules/Stubs_Handler/Stub_L6470.c \ -../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ -../Modules/Stubs_Handler/Stub_Motor.c \ -../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ -../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ -../Modules/Stubs_Handler/Stub_SpeedSensor.c \ -../Modules/Stubs_Handler/Stub_Status.c \ -../Modules/Stubs_Handler/Stub_SteperMotor.c \ -../Modules/Stubs_Handler/Stub_TempSensor.c \ -../Modules/Stubs_Handler/Stub_TivaReg.c \ -../Modules/Stubs_Handler/Stub_Valve.c \ -../Modules/Stubs_Handler/User_Leds.c \ -../Modules/Stubs_Handler/temperature_sensor.c - -C_DEPS += \ -./Modules/Stubs_Handler/Calculate.d \ -./Modules/Stubs_Handler/Progress.d \ -./Modules/Stubs_Handler/StubRealTimeUsage.d \ -./Modules/Stubs_Handler/Stub_Cartridge.d \ -./Modules/Stubs_Handler/Stub_Dancer.d \ -./Modules/Stubs_Handler/Stub_Dispenser.d \ -./Modules/Stubs_Handler/Stub_ExtFlash.d \ -./Modules/Stubs_Handler/Stub_FPGARWReg.d \ -./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ -./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ -./Modules/Stubs_Handler/Stub_GPIO.d \ -./Modules/Stubs_Handler/Stub_HW_Version.d \ -./Modules/Stubs_Handler/Stub_Heater.d \ -./Modules/Stubs_Handler/Stub_I2C.d \ -./Modules/Stubs_Handler/Stub_IntADC.d \ -./Modules/Stubs_Handler/Stub_L6470.d \ -./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ -./Modules/Stubs_Handler/Stub_Motor.d \ -./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ -./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ -./Modules/Stubs_Handler/Stub_SpeedSensor.d \ -./Modules/Stubs_Handler/Stub_Status.d \ -./Modules/Stubs_Handler/Stub_SteperMotor.d \ -./Modules/Stubs_Handler/Stub_TempSensor.d \ -./Modules/Stubs_Handler/Stub_TivaReg.d \ -./Modules/Stubs_Handler/Stub_Valve.d \ -./Modules/Stubs_Handler/User_Leds.d \ -./Modules/Stubs_Handler/temperature_sensor.d - -OBJS += \ -./Modules/Stubs_Handler/Calculate.obj \ -./Modules/Stubs_Handler/Progress.obj \ -./Modules/Stubs_Handler/StubRealTimeUsage.obj \ -./Modules/Stubs_Handler/Stub_Cartridge.obj \ -./Modules/Stubs_Handler/Stub_Dancer.obj \ -./Modules/Stubs_Handler/Stub_Dispenser.obj \ -./Modules/Stubs_Handler/Stub_ExtFlash.obj \ -./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ -./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ -./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ -./Modules/Stubs_Handler/Stub_GPIO.obj \ -./Modules/Stubs_Handler/Stub_HW_Version.obj \ -./Modules/Stubs_Handler/Stub_Heater.obj \ -./Modules/Stubs_Handler/Stub_I2C.obj \ -./Modules/Stubs_Handler/Stub_IntADC.obj \ -./Modules/Stubs_Handler/Stub_L6470.obj \ -./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ -./Modules/Stubs_Handler/Stub_Motor.obj \ -./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ -./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ -./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ -./Modules/Stubs_Handler/Stub_Status.obj \ -./Modules/Stubs_Handler/Stub_SteperMotor.obj \ -./Modules/Stubs_Handler/Stub_TempSensor.obj \ -./Modules/Stubs_Handler/Stub_TivaReg.obj \ -./Modules/Stubs_Handler/Stub_Valve.obj \ -./Modules/Stubs_Handler/User_Leds.obj \ -./Modules/Stubs_Handler/temperature_sensor.obj - -OBJS__QUOTED += \ -"Modules\Stubs_Handler\Calculate.obj" \ -"Modules\Stubs_Handler\Progress.obj" \ -"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ -"Modules\Stubs_Handler\Stub_Cartridge.obj" \ -"Modules\Stubs_Handler\Stub_Dancer.obj" \ -"Modules\Stubs_Handler\Stub_Dispenser.obj" \ -"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ -"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ -"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ -"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ -"Modules\Stubs_Handler\Stub_GPIO.obj" \ -"Modules\Stubs_Handler\Stub_HW_Version.obj" \ -"Modules\Stubs_Handler\Stub_Heater.obj" \ -"Modules\Stubs_Handler\Stub_I2C.obj" \ -"Modules\Stubs_Handler\Stub_IntADC.obj" \ -"Modules\Stubs_Handler\Stub_L6470.obj" \ -"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ -"Modules\Stubs_Handler\Stub_Motor.obj" \ -"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ -"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ -"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ -"Modules\Stubs_Handler\Stub_Status.obj" \ -"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ -"Modules\Stubs_Handler\Stub_TempSensor.obj" \ -"Modules\Stubs_Handler\Stub_TivaReg.obj" \ -"Modules\Stubs_Handler\Stub_Valve.obj" \ -"Modules\Stubs_Handler\User_Leds.obj" \ -"Modules\Stubs_Handler\temperature_sensor.obj" - -C_DEPS__QUOTED += \ -"Modules\Stubs_Handler\Calculate.d" \ -"Modules\Stubs_Handler\Progress.d" \ -"Modules\Stubs_Handler\StubRealTimeUsage.d" \ -"Modules\Stubs_Handler\Stub_Cartridge.d" \ -"Modules\Stubs_Handler\Stub_Dancer.d" \ -"Modules\Stubs_Handler\Stub_Dispenser.d" \ -"Modules\Stubs_Handler\Stub_ExtFlash.d" \ -"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ -"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ -"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ -"Modules\Stubs_Handler\Stub_GPIO.d" \ -"Modules\Stubs_Handler\Stub_HW_Version.d" \ -"Modules\Stubs_Handler\Stub_Heater.d" \ -"Modules\Stubs_Handler\Stub_I2C.d" \ -"Modules\Stubs_Handler\Stub_IntADC.d" \ -"Modules\Stubs_Handler\Stub_L6470.d" \ -"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ -"Modules\Stubs_Handler\Stub_Motor.d" \ -"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ -"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ -"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ -"Modules\Stubs_Handler\Stub_Status.d" \ -"Modules\Stubs_Handler\Stub_SteperMotor.d" \ -"Modules\Stubs_Handler\Stub_TempSensor.d" \ -"Modules\Stubs_Handler\Stub_TivaReg.d" \ -"Modules\Stubs_Handler\Stub_Valve.d" \ -"Modules\Stubs_Handler\User_Leds.d" \ -"Modules\Stubs_Handler\temperature_sensor.d" - -C_SRCS__QUOTED += \ -"../Modules/Stubs_Handler/Calculate.c" \ -"../Modules/Stubs_Handler/Progress.c" \ -"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ -"../Modules/Stubs_Handler/Stub_Cartridge.c" \ -"../Modules/Stubs_Handler/Stub_Dancer.c" \ -"../Modules/Stubs_Handler/Stub_Dispenser.c" \ -"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ -"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ -"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ -"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ -"../Modules/Stubs_Handler/Stub_GPIO.c" \ -"../Modules/Stubs_Handler/Stub_HW_Version.c" \ -"../Modules/Stubs_Handler/Stub_Heater.c" \ -"../Modules/Stubs_Handler/Stub_I2C.c" \ -"../Modules/Stubs_Handler/Stub_IntADC.c" \ -"../Modules/Stubs_Handler/Stub_L6470.c" \ -"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ -"../Modules/Stubs_Handler/Stub_Motor.c" \ -"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ -"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ -"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ -"../Modules/Stubs_Handler/Stub_Status.c" \ -"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ -"../Modules/Stubs_Handler/Stub_TempSensor.c" \ -"../Modules/Stubs_Handler/Stub_TivaReg.c" \ -"../Modules/Stubs_Handler/Stub_Valve.c" \ -"../Modules/Stubs_Handler/User_Leds.c" \ -"../Modules/Stubs_Handler/temperature_sensor.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/9043163a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/9043163a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/9043163a8871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/a0a364509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/a0a364509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/a0a364509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/b0f9b0e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/b0f9b0e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/b0f9b0e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/c0402a3a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/c0402a3a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/c0402a3a8871001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/10c9ca8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/10c9ca8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/10c9ca8b9571001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/4096538eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/4096538eb56e001a173da96cce181ab0 deleted file mode 100644 index ae44b8e39..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/4096538eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/803d28cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/803d28cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/803d28cc9071001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/80f5dd398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/80f5dd398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/80f5dd398871001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/90d909439b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/90d909439b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/90d909439b71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/b0415f429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/b0415f429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/b0415f429b71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/c02e569b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/c02e569b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/c02e569b8f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/c0f4c5b38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/c0f4c5b38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/c0f4c5b38771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/d07ce8398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/d07ce8398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/d07ce8398871001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/e01d7de78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/e01d7de78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/e01d7de78f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/f0d9528b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/f0d9528b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/f0d9528b9571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/1051dea99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/1051dea99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/1051dea99071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/402545f3ef6c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/402545f3ef6c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/402545f3ef6c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/503ad78db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/503ad78db56e001a173da96cce181ab0 deleted file mode 100644 index 6f80887dd..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/503ad78db56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/804e128b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/804e128b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/804e128b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/90bc09ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/90bc09ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/90bc09ac9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/a0cd4529c36e001a17dd93e105fd0cb6 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/a0cd4529c36e001a17dd93e105fd0cb6 deleted file mode 100644 index 385b8c156..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/a0cd4529c36e001a17dd93e105fd0cb6 +++ /dev/null @@ -1,107 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -#ifndef _MB_UTILS_H -#define _MB_UTILS_H - -#ifdef __cplusplus -PR_BEGIN_EXTERN_C -#endif -/*! \defgroup modbus_utils Utilities - * - * This module contains some utility functions which can be used by - * the application. It includes some special functions for working with - * bitfields backed by a character array buffer. - * - */ -/*! \addtogroup modbus_utils - * @{ - */ -/*! \brief Function to set bits in a byte buffer. - * - * This function allows the efficient use of an array to implement bitfields. - * The array used for storing the bits must always be a multiple of two - * bytes. Up to eight bits can be set or cleared in one operation. - * - * \param ucByteBuf A buffer where the bit values are stored. Must be a - * multiple of 2 bytes. No length checking is performed and if - * usBitOffset / 8 is greater than the size of the buffer memory contents - * is overwritten. - * \param usBitOffset The starting address of the bits to set. The first - * bit has the offset 0. - * \param ucNBits Number of bits to modify. The value must always be smaller - * than 8. - * \param ucValues Thew new values for the bits. The value for the first bit - * starting at usBitOffset is the LSB of the value - * ucValues - * - * \code - * ucBits[2] = {0, 0}; - * - * // Set bit 4 to 1 (read: set 1 bit starting at bit offset 4 to value 1) - * xMBUtilSetBits( ucBits, 4, 1, 1 ); - * - * // Set bit 7 to 1 and bit 8 to 0. - * xMBUtilSetBits( ucBits, 7, 2, 0x01 ); - * - * // Set bits 8 - 11 to 0x05 and bits 12 - 15 to 0x0A; - * xMBUtilSetBits( ucBits, 8, 8, 0x5A); - * \endcode - */ -void xMBUtilSetBits( UCHAR * ucByteBuf, USHORT usBitOffset, - UCHAR ucNBits, UCHAR ucValues ); - -/*! \brief Function to read bits in a byte buffer. - * - * This function is used to extract up bit values from an array. Up to eight - * bit values can be extracted in one step. - * - * \param ucByteBuf A buffer where the bit values are stored. - * \param usBitOffset The starting address of the bits to set. The first - * bit has the offset 0. - * \param ucNBits Number of bits to modify. The value must always be smaller - * than 8. - * - * \code - * UCHAR ucBits[2] = {0, 0}; - * UCHAR ucResult; - * - * // Extract the bits 3 - 10. - * ucResult = xMBUtilGetBits( ucBits, 3, 8 ); - * \endcode - */ -UCHAR xMBUtilGetBits( UCHAR * ucByteBuf, USHORT usBitOffset, - UCHAR ucNBits ); - -/*! @} */ - -#ifdef __cplusplus -PR_END_EXTERN_C -#endif -#endif diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/b0c7a2acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/b0c7a2acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 716d5a2e0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/b0c7a2acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/d0cb55429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/d0cb55429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/d0cb55429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/d186bb8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/d186bb8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/d186bb8b9571001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/00eed1acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/00eed1acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index a3c45670a..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/00eed1acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ -../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ -./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ -./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ -"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ -"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ -"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/217b228b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/217b228b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/217b228b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/3187dd9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/3187dd9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/3187dd9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/5063d3388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/5063d3388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/5063d3388871001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/603350b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/603350b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/603350b48771001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/707070b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/707070b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/707070b58771001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/72e39b398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/72e39b398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/72e39b398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/80b63e419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/80b63e419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/80b63e419b71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/90c03f9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/90c03f9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/90c03f9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/a08531e29a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/a08531e29a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/a08531e29a71001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/403c62acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/403c62acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 86e61b207..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/403c62acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/702bb88b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/702bb88b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/702bb88b9571001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/810d0ab58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/810d0ab58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/810d0ab58771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/a055f959086d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/a055f959086d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/a055f959086d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/c05117e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/c05117e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/c05117e39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/e029c7aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/e029c7aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index b27c5e3b8..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/e029c7aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,62 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ -../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ -../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ -../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ -../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ -../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ -../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c - -C_DEPS += \ -./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ -./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ -./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ -./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ -./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ -./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ -./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d - -OBJS += \ -./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ -./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ -./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ -./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ -./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ -./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ -./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ -"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ -"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ -"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ -"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ -"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ -"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ -"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ -"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ -"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ -"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ -"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ -"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ -"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ -"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ -"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ -"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ -"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ -"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/f00b4be39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/f00b4be39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/f00b4be39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/f02c448eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/f02c448eb56e001a173da96cce181ab0 deleted file mode 100644 index 7bb4b0e24..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/f02c448eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/SPI/SPI_Comm.c - -C_DEPS += \ -./Drivers/SPI/SPI_Comm.d - -OBJS += \ -./Drivers/SPI/SPI_Comm.obj - -OBJS__QUOTED += \ -"Drivers\SPI\SPI_Comm.obj" - -C_DEPS__QUOTED += \ -"Drivers\SPI\SPI_Comm.d" - -C_SRCS__QUOTED += \ -"../Drivers/SPI/SPI_Comm.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/002f5facb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/002f5facb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index cd2f2e099..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/002f5facb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/01244d509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/01244d509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/01244d509571001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/0137d5b38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/0137d5b38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/0137d5b38771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/21a2c2509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/21a2c2509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/21a2c2509571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/51cb3d8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/51cb3d8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/51cb3d8b9571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/a1755fb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/a1755fb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/a1755fb48771001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/c061054f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/c061054f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/c061054f9571001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/e0e7d78bb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/e0e7d78bb56e001a173da96cce181ab0 deleted file mode 100644 index 7aa0e8205..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/e0e7d78bb56e001a173da96cce181ab0 +++ /dev/null @@ -1,58 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -CFG_SRCS += \ -../Embedded.cfg - -CMD_SRCS += \ -../tm4c129xnczad.cmd - -C_SRCS += \ -../Main.c \ -../delay.c - -GEN_CMDS += \ -./configPkg/linker.cmd - -GEN_FILES += \ -./configPkg/linker.cmd \ -./configPkg/compiler.opt - -GEN_MISC_DIRS += \ -./configPkg/ - -C_DEPS += \ -./Main.d \ -./delay.d - -GEN_OPTS += \ -./configPkg/compiler.opt - -OBJS += \ -./Main.obj \ -./delay.obj - -GEN_MISC_DIRS__QUOTED += \ -"configPkg\" - -OBJS__QUOTED += \ -"Main.obj" \ -"delay.obj" - -C_DEPS__QUOTED += \ -"Main.d" \ -"delay.d" - -GEN_FILES__QUOTED += \ -"configPkg\linker.cmd" \ -"configPkg\compiler.opt" - -C_SRCS__QUOTED += \ -"../Main.c" \ -"../delay.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/f05dd318b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/f05dd318b66e001a173da96cce181ab0 deleted file mode 100644 index 63bbc10a3..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/f05dd318b66e001a173da96cce181ab0 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/0032cc18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/0032cc18b66e001a173da96cce181ab0 deleted file mode 100644 index 062005c16..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/0032cc18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/Heaters/Heaters_bit.c \ -../Modules/Heaters/Heaters_init.c \ -../Modules/Heaters/Heaters_maint.c \ -../Modules/Heaters/Heaters_print.c - -C_DEPS += \ -./Modules/Heaters/Heaters_bit.d \ -./Modules/Heaters/Heaters_init.d \ -./Modules/Heaters/Heaters_maint.d \ -./Modules/Heaters/Heaters_print.d - -OBJS += \ -./Modules/Heaters/Heaters_bit.obj \ -./Modules/Heaters/Heaters_init.obj \ -./Modules/Heaters/Heaters_maint.obj \ -./Modules/Heaters/Heaters_print.obj - -OBJS__QUOTED += \ -"Modules\Heaters\Heaters_bit.obj" \ -"Modules\Heaters\Heaters_init.obj" \ -"Modules\Heaters\Heaters_maint.obj" \ -"Modules\Heaters\Heaters_print.obj" - -C_DEPS__QUOTED += \ -"Modules\Heaters\Heaters_bit.d" \ -"Modules\Heaters\Heaters_init.d" \ -"Modules\Heaters\Heaters_maint.d" \ -"Modules\Heaters\Heaters_print.d" - -C_SRCS__QUOTED += \ -"../Modules/Heaters/Heaters_bit.c" \ -"../Modules/Heaters/Heaters_init.c" \ -"../Modules/Heaters/Heaters_maint.c" \ -"../Modules/Heaters/Heaters_print.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/00d2efe68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/00d2efe68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/00d2efe68f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/1006d3e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/1006d3e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/1006d3e78f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/2042e1aa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/2042e1aa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/2042e1aa9071001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/60de708a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/60de708a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/60de708a9571001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/7003bfe39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/7003bfe39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/7003bfe39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/706cac419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/706cac419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/706cac419b71001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/70c363ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/70c363ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/70c363ac9071001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/b082858b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/b082858b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/b082858b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/f0b5d09b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/f0b5d09b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/f0b5d09b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/10fe47ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/10fe47ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/10fe47ac9071001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/50ad439a8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/50ad439a8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/50ad439a8f71001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/50d298ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/50d298ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/50d298ab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/607bb49b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/607bb49b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/607bb49b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/6081393a066d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/6081393a066d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/6081393a066d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/60914c8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/60914c8eb56e001a173da96cce181ab0 deleted file mode 100644 index 2ef8f47b3..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/60914c8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/SSI_Comm/SSI_Comm.c - -C_DEPS += \ -./Drivers/SSI_Comm/SSI_Comm.d - -OBJS += \ -./Drivers/SSI_Comm/SSI_Comm.obj - -OBJS__QUOTED += \ -"Drivers\SSI_Comm\SSI_Comm.obj" - -C_DEPS__QUOTED += \ -"Drivers\SSI_Comm\SSI_Comm.d" - -C_SRCS__QUOTED += \ -"../Drivers/SSI_Comm/SSI_Comm.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/702447aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/702447aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 55839a6f0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/702447aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,85 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/70281618b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/70281618b66e001a173da96cce181ab0 deleted file mode 100644 index 63fadabb4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/70281618b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c - -C_DEPS += \ -./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d - -OBJS += \ -./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj - -OBJS__QUOTED += \ -"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" - -C_DEPS__QUOTED += \ -"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" - -C_SRCS__QUOTED += \ -"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/804c26419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/804c26419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/804c26419b71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/b010f9429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/b010f9429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/b010f9429b71001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/c09cd2e19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/c09cd2e19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/c09cd2e19a71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/00599316b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/00599316b66e001a173da96cce181ab0 deleted file mode 100644 index 31bc6b321..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/00599316b66e001a173da96cce181ab0 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Common/ErrorCode.pb-c.c \ -../Communication/PMR/Common/ErrorResponse.pb-c.c \ -../Communication/PMR/Common/MessageContainer.pb-c.c \ -../Communication/PMR/Common/MessageType.pb-c.c - -C_DEPS += \ -./Communication/PMR/Common/ErrorCode.pb-c.d \ -./Communication/PMR/Common/ErrorResponse.pb-c.d \ -./Communication/PMR/Common/MessageContainer.pb-c.d \ -./Communication/PMR/Common/MessageType.pb-c.d - -OBJS += \ -./Communication/PMR/Common/ErrorCode.pb-c.obj \ -./Communication/PMR/Common/ErrorResponse.pb-c.obj \ -./Communication/PMR/Common/MessageContainer.pb-c.obj \ -./Communication/PMR/Common/MessageType.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Common\ErrorCode.pb-c.obj" \ -"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ -"Communication\PMR\Common\MessageContainer.pb-c.obj" \ -"Communication\PMR\Common\MessageType.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Common\ErrorCode.pb-c.d" \ -"Communication\PMR\Common\ErrorResponse.pb-c.d" \ -"Communication\PMR\Common\MessageContainer.pb-c.d" \ -"Communication\PMR\Common\MessageType.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Common/ErrorCode.pb-c.c" \ -"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ -"../Communication/PMR/Common/MessageContainer.pb-c.c" \ -"../Communication/PMR/Common/MessageType.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/301048429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/301048429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/301048429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/30e09be29a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/30e09be29a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/30e09be29a71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/7004db388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/7004db388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/7004db388871001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70accbacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70accbacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 1997a7dcc..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70accbacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/a0d2819b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/a0d2819b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/a0d2819b8f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b005c7f9076d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b005c7f9076d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b005c7f9076d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b0660de39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b0660de39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b0660de39a71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b078b2398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b078b2398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b078b2398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/c038de388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/c038de388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/c038de388871001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/20471a18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/20471a18b66e001a173da96cce181ab0 deleted file mode 100644 index eb43d31e6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/20471a18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/406fb6b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/406fb6b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/406fb6b48771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/6081dd16b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/6081dd16b66e001a173da96cce181ab0 deleted file mode 100644 index 2b479abab..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/6081dd16b66e001a173da96cce181ab0 +++ /dev/null @@ -1,463 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/60bf1121f56c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/60bf1121f56c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/60bf1121f56c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/c02a99acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/c02a99acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 5d5798422..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/c02a99acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/c08316439b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/c08316439b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/c08316439b71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/c0b696cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/c0b696cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/c0b696cc9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/d04336398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/d04336398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/d04336398871001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/20ce9aab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/20ce9aab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/20ce9aab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/50f37918b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/50f37918b66e001a173da96cce181ab0 deleted file mode 100644 index e9d88a3ed..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/50f37918b66e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ -../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ -./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ -./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ -"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ -"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ -"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/60fb7a8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/60fb7a8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/60fb7a8b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/90269bacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/90269bacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 248408ccc..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/90269bacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c - -C_DEPS += \ -./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d - -OBJS += \ -./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/a0617f9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/a0617f9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/a0617f9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/c03fdeab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/c03fdeab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/c03fdeab9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/d047afcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/d047afcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/d047afcc9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/d0b535419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/d0b535419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/d0b535419b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/d0dcb6e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/d0dcb6e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/d0dcb6e58f71001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/e037d2e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/e037d2e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/e037d2e68f71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/1014a7e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/1014a7e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/1014a7e78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/1064f9e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/1064f9e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/1064f9e58f71001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/10e16e16b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/10e16e16b66e001a173da96cce181ab0 deleted file mode 100644 index 5bbe9efe0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/10e16e16b66e001a173da96cce181ab0 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -build-306001487: - @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc - -build-306001487-inproc: ../Embedded.cfg - @echo 'Building file: $<' - @echo 'Invoking: XDCtools' - "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" - @echo 'Finished building: $<' - @echo ' ' - -configPkg/linker.cmd: build-306001487 ../Embedded.cfg -configPkg/compiler.opt: build-306001487 -configPkg/: build-306001487 - -Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/208d04519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/208d04519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/208d04519571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/608ae9ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/608ae9ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/608ae9ab9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/b0262b8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/b0262b8eb56e001a173da96cce181ab0 deleted file mode 100644 index ef02d3fd2..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/b0262b8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/c0b3d4e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/c0b3d4e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/c0b3d4e78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/c1567e8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/c1567e8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/c1567e8b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/d1641a8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/d1641a8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/d1641a8b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/e14a12b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/e14a12b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/e14a12b58771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/006ec218b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/006ec218b66e001a173da96cce181ab0 deleted file mode 100644 index b2b0260e4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/006ec218b66e001a173da96cce181ab0 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/302415439b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/302415439b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/302415439b71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/409dbb509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/409dbb509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/409dbb509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/4154463a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/4154463a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/4154463a8871001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/5041b7200b6d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/5041b7200b6d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/5041b7200b6d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/6054724f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/6054724f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/6054724f9571001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/7053cb8db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/7053cb8db56e001a173da96cce181ab0 deleted file mode 100644 index 45308d60d..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/7053cb8db56e001a173da96cce181ab0 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/801f2dcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/801f2dcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/801f2dcc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/806c0d8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/806c0d8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/806c0d8b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/a03170429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/a03170429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/a03170429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/a03cf4398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/a03cf4398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/a03cf4398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/a0665c6c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/a0665c6c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/a0665c6c8771001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/a0f61dc40a6d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/a0f61dc40a6d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/a0f61dc40a6d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/d0d6e5429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/d0d6e5429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/d0d6e5429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/e026c7ca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/e026c7ca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/e026c7ca9071001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/e0faeae78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/e0faeae78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/e0faeae78f71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/100bceb38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/100bceb38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/100bceb38771001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/104be58a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/104be58a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/104be58a9571001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/50674109f56c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/50674109f56c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/50674109f56c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/818eae8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/818eae8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/818eae8b9571001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/a0c3fae58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/a0c3fae58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/a0c3fae58f71001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/c0878616b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/c0878616b66e001a173da96cce181ab0 deleted file mode 100644 index ec3f0b835..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/c0878616b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/protobuf-c/protobuf-c.c - -C_DEPS += \ -./Common/protobuf-c/protobuf-c.d - -OBJS += \ -./Common/protobuf-c/protobuf-c.obj - -OBJS__QUOTED += \ -"Common\protobuf-c\protobuf-c.obj" - -C_DEPS__QUOTED += \ -"Common\protobuf-c\protobuf-c.d" - -C_SRCS__QUOTED += \ -"../Common/protobuf-c/protobuf-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/d0c7ac2bdc6c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/d0c7ac2bdc6c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/d0c7ac2bdc6c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/e080b8ca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/e080b8ca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/e080b8ca9071001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f0050c8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f0050c8eb56e001a173da96cce181ab0 deleted file mode 100644 index 35c800d63..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f0050c8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f02c44acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f02c44acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 233b95060..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f02c44acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,632 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ -../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ -../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ -../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ -../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ -../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ -../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ -../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ -../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ -../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ -../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ -../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ -../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ -../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ -../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ -../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ -../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ -../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ -../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ -../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ -../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ -../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ -../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ -../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ -../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ -../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ -../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ -../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ -../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ -../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ -../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ -../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ -../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ -../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ -../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ -../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ -../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ -../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ -../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ -../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ -../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ -../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ -../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ -../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ -../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ -../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ -../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ -../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ -../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ -../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ -../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ -../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ -../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ -../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ -../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ -../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ -../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ -../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ -../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ -../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ -../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ -../Communication/PMR/Stubs/StubValveResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ -./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ -./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ -./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ -./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ -./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ -./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ -./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ -./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ -./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ -./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ -./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ -./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ -./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ -./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ -./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ -./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ -./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ -./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ -./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ -./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ -./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ -./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ -./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ -./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ -./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ -./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ -./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ -./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ -./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ -./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ -./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ -./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ -./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ -./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ -./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ -./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ -./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ -./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ -./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ -./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ -./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ -./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ -./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ -./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ -./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ -./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ -./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ -./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ -./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ -./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ -./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ -./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ -./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ -./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ -./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ -./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ -./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ -./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ -./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ -./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ -./Communication/PMR/Stubs/StubValveResponse.pb-c.d - -OBJS += \ -./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ -./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ -./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ -./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubValveResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ -"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ -"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ -"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ -"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ -"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ -"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubValveResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ -"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ -"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ -"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f062f8e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f062f8e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f062f8e39a71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f1598c9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f1598c9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f1598c9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/00591fcb9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/00591fcb9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/00591fcb9071001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/10149918b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/10149918b66e001a173da96cce181ab0 deleted file mode 100644 index 7bb4b0e24..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/10149918b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/SPI/SPI_Comm.c - -C_DEPS += \ -./Drivers/SPI/SPI_Comm.d - -OBJS += \ -./Drivers/SPI/SPI_Comm.obj - -OBJS__QUOTED += \ -"Drivers\SPI\SPI_Comm.obj" - -C_DEPS__QUOTED += \ -"Drivers\SPI\SPI_Comm.d" - -C_SRCS__QUOTED += \ -"../Drivers/SPI/SPI_Comm.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/109425429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/109425429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/109425429b71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/2068b89a8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/2068b89a8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/2068b89a8f71001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/209fe300d66c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/209fe300d66c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/209fe300d66c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/40b3da429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/40b3da429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/40b3da429b71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/705941429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/705941429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/705941429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/800d0ab58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/800d0ab58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/800d0ab58771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/b03142ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/b03142ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/b03142ac9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/b0c4a4e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/b0c4a4e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/b0c4a4e39a71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/b1fb2e3a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/b1fb2e3a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/b1fb2e3a8871001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d0267316b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d0267316b66e001a173da96cce181ab0 deleted file mode 100644 index 71dcae149..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d0267316b66e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/f09784e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/f09784e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/f09784e78f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/00ed26e49a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/00ed26e49a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/00ed26e49a71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/306b2a419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/306b2a419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/306b2a419b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/403c306e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/403c306e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/403c306e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/601446429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/601446429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/601446429b71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/609ae66b8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/609ae66b8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/609ae66b8771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/b02b40509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/b02b40509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/b02b40509571001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/c1402a3a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/c1402a3a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/c1402a3a8871001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/008a78e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/008a78e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/008a78e78f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/30f213cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/30f213cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/30f213cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/60119baa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/60119baa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/60119baa9071001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/80580c3a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/80580c3a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/80580c3a8871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/80a21d18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/80a21d18b66e001a173da96cce181ab0 deleted file mode 100644 index 87c0ad368..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/80a21d18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ -../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ -../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c - -C_DEPS += \ -./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ -./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ -./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d - -OBJS += \ -./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ -./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ -./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj - -OBJS__QUOTED += \ -"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ -"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ -"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" - -C_DEPS__QUOTED += \ -"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ -"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ -"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" - -C_SRCS__QUOTED += \ -"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ -"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ -"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/80e5c2429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/80e5c2429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/80e5c2429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/b017ace39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/b017ace39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/b017ace39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/b0f66d16b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/b0f66d16b66e001a173da96cce181ab0 deleted file mode 100644 index 7aa0e8205..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/b0f66d16b66e001a173da96cce181ab0 +++ /dev/null @@ -1,58 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -CFG_SRCS += \ -../Embedded.cfg - -CMD_SRCS += \ -../tm4c129xnczad.cmd - -C_SRCS += \ -../Main.c \ -../delay.c - -GEN_CMDS += \ -./configPkg/linker.cmd - -GEN_FILES += \ -./configPkg/linker.cmd \ -./configPkg/compiler.opt - -GEN_MISC_DIRS += \ -./configPkg/ - -C_DEPS += \ -./Main.d \ -./delay.d - -GEN_OPTS += \ -./configPkg/compiler.opt - -OBJS += \ -./Main.obj \ -./delay.obj - -GEN_MISC_DIRS__QUOTED += \ -"configPkg\" - -OBJS__QUOTED += \ -"Main.obj" \ -"delay.obj" - -C_DEPS__QUOTED += \ -"Main.d" \ -"delay.d" - -GEN_FILES__QUOTED += \ -"configPkg\linker.cmd" \ -"configPkg\compiler.opt" - -C_SRCS__QUOTED += \ -"../Main.c" \ -"../delay.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/c0f4e1e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/c0f4e1e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/c0f4e1e39a71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/c1f4c5b38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/c1f4c5b38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/c1f4c5b38771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/d034b818b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/d034b818b66e001a173da96cce181ab0 deleted file mode 100644 index 7e6705062..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/d034b818b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/AlarmHandling/AlarmHandling.c - -C_DEPS += \ -./Modules/AlarmHandling/AlarmHandling.d - -OBJS += \ -./Modules/AlarmHandling/AlarmHandling.obj - -OBJS__QUOTED += \ -"Modules\AlarmHandling\AlarmHandling.obj" - -C_DEPS__QUOTED += \ -"Modules\AlarmHandling\AlarmHandling.d" - -C_SRCS__QUOTED += \ -"../Modules/AlarmHandling/AlarmHandling.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/201ed7acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/201ed7acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 41d1db205..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/201ed7acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ -../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ -./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ -./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ -"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ -"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ -"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/20f935cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/20f935cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/20f935cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/3012a5ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/3012a5ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/3012a5ac9071001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/30b8a9429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/30b8a9429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/30b8a9429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/70ee80e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/70ee80e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/70ee80e78f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/8084c76c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/8084c76c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/8084c76c8771001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/a0f6a516b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/a0f6a516b66e001a173da96cce181ab0 deleted file mode 100644 index 55839a6f0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/a0f6a516b66e001a173da96cce181ab0 +++ /dev/null @@ -1,85 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/b00e409b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/b00e409b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/b00e409b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/b0e3bb388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/b0e3bb388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/b0e3bb388871001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/c0b1186d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/c0b1186d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/c0b1186d8771001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/c14cab398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/c14cab398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/c14cab398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/10dbfc6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/10dbfc6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/10dbfc6e8771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/10e387509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/10e387509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/10e387509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/6076dbe19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/6076dbe19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/6076dbe19a71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/609f64cb9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/609f64cb9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/609f64cb9071001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/60ae6d9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/60ae6d9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/60ae6d9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/704ecfb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/704ecfb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/704ecfb48771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/709b79e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/709b79e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/709b79e78f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/7129cd509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/7129cd509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/7129cd509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/807dc4cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/807dc4cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/807dc4cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/90436be78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/90436be78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/90436be78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/90dce6a99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/90dce6a99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/90dce6a99071001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/90de23adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/90de23adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index d58afd1c9..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/90de23adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/flash_ram/FlashProgram.c \ -../Drivers/flash_ram/MCU_E2Prom.c - -C_DEPS += \ -./Drivers/flash_ram/FlashProgram.d \ -./Drivers/flash_ram/MCU_E2Prom.d - -OBJS += \ -./Drivers/flash_ram/FlashProgram.obj \ -./Drivers/flash_ram/MCU_E2Prom.obj - -OBJS__QUOTED += \ -"Drivers\flash_ram\FlashProgram.obj" \ -"Drivers\flash_ram\MCU_E2Prom.obj" - -C_DEPS__QUOTED += \ -"Drivers\flash_ram\FlashProgram.d" \ -"Drivers\flash_ram\MCU_E2Prom.d" - -C_SRCS__QUOTED += \ -"../Drivers/flash_ram/FlashProgram.c" \ -"../Drivers/flash_ram/MCU_E2Prom.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/a0e9208a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/a0e9208a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/a0e9208a9571001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/b01c0a4f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/b01c0a4f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/b01c0a4f9571001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/b0dfdbe78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/b0dfdbe78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/b0dfdbe78f71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/d10517b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/d10517b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/d10517b58771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/10d40ae78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/10d40ae78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/10d40ae78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/20bb2fac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/20bb2fac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/20bb2fac9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/31e910519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/31e910519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/31e910519571001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/501b68429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/501b68429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/501b68429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/50ee36419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/50ee36419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/50ee36419b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/70208f419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/70208f419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/70208f419b71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/70b508adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/70b508adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 73e3151bc..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/70b508adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/70cce76e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/70cce76e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/70cce76e8771001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/80baeeab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/80baeeab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/80baeeab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/904c533a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/904c533a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/904c533a8871001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/90f54b9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/90f54b9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/90f54b9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/a05c15cd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/a05c15cd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/a05c15cd9071001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/a09d759b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/a09d759b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/a09d759b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/e085939b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/e085939b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/e085939b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/0068a08cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/0068a08cb56e001a173da96cce181ab0 deleted file mode 100644 index ddddab698..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/0068a08cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,106 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/105958cd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/105958cd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/105958cd9071001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/806888e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/806888e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/806888e78f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/80daf9cb9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/80daf9cb9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/80daf9cb9071001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/9133238a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/9133238a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/9133238a9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/00db1e18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/00db1e18b66e001a173da96cce181ab0 deleted file mode 100644 index 10e0deef0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/00db1e18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/201517429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/201517429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/201517429b71001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/4142cc398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/4142cc398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/4142cc398871001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/509c58cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/509c58cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/509c58cc9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/602e1e8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/602e1e8eb56e001a173da96cce181ab0 deleted file mode 100644 index a52b2440b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/602e1e8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ -../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ -./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ -./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ -"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ -"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ -"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/8013d9398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/8013d9398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/8013d9398871001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/80d0cde39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/80d0cde39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/80d0cde39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/9090816e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/9090816e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/9090816e8771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/a09467e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/a09467e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/a09467e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/d0b438398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/d0b438398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/d0b438398871001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/f0a0129c8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/f0a0129c8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/f0a0129c8f71001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/31e3219c8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/31e3219c8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/31e3219c8f71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/5066bd998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/5066bd998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/5066bd998f71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/7052a86e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/7052a86e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/7052a86e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/908d2718b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/908d2718b66e001a173da96cce181ab0 deleted file mode 100644 index f8910cec4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/908d2718b66e001a173da96cce181ab0 +++ /dev/null @@ -1,56 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Flash_Memory/FATFS/Control_File_System.c \ -../Drivers/Flash_Memory/FATFS/cc932.c \ -../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ -../Drivers/Flash_Memory/FATFS/ff.c \ -../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ -../Drivers/Flash_Memory/FATFS/spi_flash.c - -C_DEPS += \ -./Drivers/Flash_Memory/FATFS/Control_File_System.d \ -./Drivers/Flash_Memory/FATFS/cc932.d \ -./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ -./Drivers/Flash_Memory/FATFS/ff.d \ -./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ -./Drivers/Flash_Memory/FATFS/spi_flash.d - -OBJS += \ -./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ -./Drivers/Flash_Memory/FATFS/cc932.obj \ -./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ -./Drivers/Flash_Memory/FATFS/ff.obj \ -./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ -./Drivers/Flash_Memory/FATFS/spi_flash.obj - -OBJS__QUOTED += \ -"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ -"Drivers\Flash_Memory\FATFS\cc932.obj" \ -"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ -"Drivers\Flash_Memory\FATFS\ff.obj" \ -"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ -"Drivers\Flash_Memory\FATFS\spi_flash.obj" - -C_DEPS__QUOTED += \ -"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ -"Drivers\Flash_Memory\FATFS\cc932.d" \ -"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ -"Drivers\Flash_Memory\FATFS\ff.d" \ -"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ -"Drivers\Flash_Memory\FATFS\spi_flash.d" - -C_SRCS__QUOTED += \ -"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ -"../Drivers/Flash_Memory/FATFS/cc932.c" \ -"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ -"../Drivers/Flash_Memory/FATFS/ff.c" \ -"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ -"../Drivers/Flash_Memory/FATFS/spi_flash.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/90cdd1e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/90cdd1e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/90cdd1e78f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/a0a7e96b8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/a0a7e96b8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/a0a7e96b8771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/004a5acc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/004a5acc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/004a5acc9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/30561fc40a6d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/30561fc40a6d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/30561fc40a6d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/50e9a9ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/50e9a9ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/50e9a9ab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/60ae9ce39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/60ae9ce39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/60ae9ce39a71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/71518e8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/71518e8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/71518e8a9571001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/9048b9429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/9048b9429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/9048b9429b71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/905205b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/905205b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/905205b58771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/c138de388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/c138de388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/c138de388871001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/d05117519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/d05117519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/d05117519571001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/d098ed6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/d098ed6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/d098ed6e8771001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/d0c4059b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/d0c4059b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/d0c4059b8f71001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/f040d7e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/f040d7e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/f040d7e68f71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/107285509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/107285509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/107285509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/40a84a429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/40a84a429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/40a84a429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/40ecd5e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/40ecd5e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/40ecd5e78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/5057af6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/5057af6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/5057af6e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/50e0e58db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/50e0e58db56e001a173da96cce181ab0 deleted file mode 100644 index 2c8a0951f..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/50e0e58db56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/a03f45519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/a03f45519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/a03f45519571001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/a0dc278cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/a0dc278cb56e001a173da96cce181ab0 deleted file mode 100644 index a15ee2b82..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/a0dc278cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,57 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b0c720519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b0c720519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b0c720519571001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/e0661f8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/e0661f8eb56e001a173da96cce181ab0 deleted file mode 100644 index 6735c78b9..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/e0661f8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/f06285ca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/f06285ca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/f06285ca9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/112a2bb58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/112a2bb58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/112a2bb58771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/401a48ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/401a48ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/401a48ab9071001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/802e2c509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/802e2c509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/802e2c509571001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/90ca246e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/90ca246e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/90ca246e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/90cac7388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/90cac7388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/90cac7388871001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/c01f4fe29a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/c01f4fe29a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/c01f4fe29a71001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/d0d5068eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/d0d5068eb56e001a173da96cce181ab0 deleted file mode 100644 index cfcf6fe0b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/d0d5068eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c - -C_DEPS += \ -./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d - -OBJS += \ -./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/e0d1dfe39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/e0d1dfe39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/e0d1dfe39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/208d21b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/208d21b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/208d21b58771001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/30d10d439b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/30d10d439b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/30d10d439b71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/4052f3398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/4052f3398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/4052f3398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/50cb3d8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/50cb3d8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/50cb3d8b9571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/6009c88bb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/6009c88bb56e001a173da96cce181ab0 deleted file mode 100644 index 11498ef05..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/6009c88bb56e001a173da96cce181ab0 +++ /dev/null @@ -1,207 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -C55_SRCS := -A_SRCS := -CFG_UPPER_SRCS := -CFG_SRCS := -ASM_UPPER_SRCS := -EXE_SRCS := -LDS_UPPER_SRCS := -CPP_SRCS := -CMD_SRCS := -O_SRCS := -ELF_SRCS := -C??_SRCS := -C64_SRCS := -C67_SRCS := -SA_SRCS := -S64_SRCS := -OPT_SRCS := -CXX_SRCS := -S67_SRCS := -S??_SRCS := -PDE_SRCS := -SV7A_SRCS := -K_SRCS := -CLA_SRCS := -S55_SRCS := -LD_UPPER_SRCS := -OUT_SRCS := -INO_SRCS := -LIB_SRCS := -ASM_SRCS := -S_UPPER_SRCS := -S43_SRCS := -LD_SRCS := -CMD_UPPER_SRCS := -C_UPPER_SRCS := -C++_SRCS := -C43_SRCS := -OBJ_SRCS := -LDS_SRCS := -S_SRCS := -CC_SRCS := -S62_SRCS := -C62_SRCS := -C_SRCS := -C55_DEPS := -C_UPPER_DEPS := -S67_DEPS := -S62_DEPS := -S_DEPS := -OPT_DEPS := -C??_DEPS := -ASM_UPPER_DEPS := -S??_DEPS := -C64_DEPS := -CXX_DEPS := -S64_DEPS := -INO_DEPS := -GEN_CMDS := -GEN_FILES := -CLA_DEPS := -S55_DEPS := -SV7A_DEPS := -EXE_OUTPUTS := -C62_DEPS := -C67_DEPS := -PDE_DEPS := -GEN_MISC_DIRS := -K_DEPS := -C_DEPS := -CC_DEPS := -BIN_OUTPUTS := -GEN_OPTS := -C++_DEPS := -C43_DEPS := -S43_DEPS := -OBJS := -ASM_DEPS := -GEN_MISC_FILES := -S_UPPER_DEPS := -CPP_DEPS := -SA_DEPS := -C++_DEPS__QUOTED := -OPT_DEPS__QUOTED := -S_UPPER_DEPS__QUOTED := -SA_DEPS__QUOTED := -C??_DEPS__QUOTED := -S67_DEPS__QUOTED := -GEN_MISC_DIRS__QUOTED := -C55_DEPS__QUOTED := -CC_DEPS__QUOTED := -ASM_UPPER_DEPS__QUOTED := -SV7A_DEPS__QUOTED := -S??_DEPS__QUOTED := -OBJS__QUOTED := -C67_DEPS__QUOTED := -K_DEPS__QUOTED := -S55_DEPS__QUOTED := -GEN_CMDS__QUOTED := -GEN_MISC_FILES__QUOTED := -INO_DEPS__QUOTED := -C62_DEPS__QUOTED := -C_DEPS__QUOTED := -C_UPPER_DEPS__QUOTED := -C43_DEPS__QUOTED := -CPP_DEPS__QUOTED := -BIN_OUTPUTS__QUOTED := -GEN_FILES__QUOTED := -C64_DEPS__QUOTED := -CXX_DEPS__QUOTED := -CLA_DEPS__QUOTED := -S_DEPS__QUOTED := -ASM_DEPS__QUOTED := -S43_DEPS__QUOTED := -EXE_OUTPUTS__QUOTED := -S64_DEPS__QUOTED := -S62_DEPS__QUOTED := -PDE_DEPS__QUOTED := -GEN_OPTS__QUOTED := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -. \ -Common/SWUpdate \ -Common/SW_Info \ -Common/Software_CRC \ -Common/Sys_PinOut_Config \ -Common/Utilities \ -Common/protobuf-c \ -Common/report \ -Communication \ -Communication/PMR/Common \ -Communication/PMR/Connection \ -Communication/PMR/Debugging \ -Communication/PMR/Diagnostics \ -Communication/PMR/EmbeddedParameters \ -Communication/PMR/FirmwareUpgrade \ -Communication/PMR/Hardware \ -Communication/PMR/IO \ -Communication/PMR/MachineStatus \ -Communication/PMR/Power \ -Communication/PMR/Printing \ -Communication/PMR/Stubs \ -Communication/PMR/ThreadLoading \ -Drivers/ADC_Sampling \ -Drivers/FPGA \ -Drivers/FPGA/FPGA_GPIO \ -Drivers/FPGA/FPGA_INTERRUPTS \ -Drivers/FPGA/Full_Vme \ -Drivers/FPGA/Full_Vme/ispvme \ -Drivers/FPGA/Motors_Driver \ -Drivers/Flash_Memory/FATFS \ -Drivers/Flash_Memory \ -Drivers/Heater \ -Drivers/I2C_Communication/ADC_MUX \ -Drivers/I2C_Communication/DAC \ -Drivers/I2C_Communication/Dispenser_Card/EEPROM \ -Drivers/I2C_Communication/Dispenser_Card \ -Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ -Drivers/I2C_Communication/Head_Card/ADC \ -Drivers/I2C_Communication/Head_Card/EEPROM \ -Drivers/I2C_Communication/Head_Card/Fan \ -Drivers/I2C_Communication/Head_Card \ -Drivers/I2C_Communication/Head_Card/IO_Ports \ -Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ -Drivers/I2C_Communication/Head_Card/PT100 \ -Drivers/I2C_Communication \ -Drivers/I2C_Communication/Main_Board_EEPROM \ -Drivers/I2C_Communication/RFID_NFC \ -Drivers/I2C_Communication/RFID_NFC/logi-tag \ -Drivers/I2C_Communication/Thermo_K \ -Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ -Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ -Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ -Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ -Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ -Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ -Drivers/I2C_Communication/WHS_Card/EEPROM \ -Drivers/I2C_Communication/WHS_Card \ -Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ -Drivers/Motors \ -Drivers/On_Chip_Flash \ -Drivers/SPI \ -Drivers/SSI_Comm/Dancer \ -Drivers/SSI_Comm \ -Drivers/SSI_Comm/Speed_Sensor \ -Drivers/USB_Communication \ -Drivers/Uart_Comm \ -Drivers/Uart_Comm/WHS_UART \ -Drivers/Valves \ -Drivers/flash_ram \ -Modules/AlarmHandling \ -Modules/Control \ -Modules/Diagnostics \ -Modules/General \ -Modules/Heaters \ -Modules/IDS \ -Modules/IFS \ -Modules/Stubs_Handler \ -Modules/Thread \ -Modules/Waste \ -StateMachines/Initialization \ -StateMachines/Printing \ - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/70e57dadb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/70e57dadb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 5712cfaab..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/70e57dadb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,204 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/e09694acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/e09694acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 5c32f02ce..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/e09694acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c - -C_DEPS += \ -./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d - -OBJS += \ -./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/2005028cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/2005028cb56e001a173da96cce181ab0 deleted file mode 100644 index ec3f0b835..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/2005028cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/protobuf-c/protobuf-c.c - -C_DEPS += \ -./Common/protobuf-c/protobuf-c.d - -OBJS += \ -./Common/protobuf-c/protobuf-c.obj - -OBJS__QUOTED += \ -"Common\protobuf-c\protobuf-c.obj" - -C_DEPS__QUOTED += \ -"Common\protobuf-c\protobuf-c.d" - -C_SRCS__QUOTED += \ -"../Common/protobuf-c/protobuf-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/2048c4388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/2048c4388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/2048c4388871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/20cd66cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/20cd66cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/20cd66cc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/3060d4e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/3060d4e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/3060d4e39a71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/309d04aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/309d04aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index ba205852c..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/309d04aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/SW_Info/SW_Info.c - -C_DEPS += \ -./Common/SW_Info/SW_Info.d - -OBJS += \ -./Common/SW_Info/SW_Info.obj - -OBJS__QUOTED += \ -"Common\SW_Info\SW_Info.obj" - -C_DEPS__QUOTED += \ -"Common\SW_Info\SW_Info.d" - -C_SRCS__QUOTED += \ -"../Common/SW_Info/SW_Info.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/80d2afe19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/80d2afe19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/80d2afe19a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/908ba3ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/908ba3ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/908ba3ac9071001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/90b20c18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/90b20c18b66e001a173da96cce181ab0 deleted file mode 100644 index 6d62c79f6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/90b20c18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/FPGA/FPGA.c \ -../Drivers/FPGA/FPGA_SPI_Comm.c \ -../Drivers/FPGA/FPGA_SSI_Comm.c - -C_DEPS += \ -./Drivers/FPGA/FPGA.d \ -./Drivers/FPGA/FPGA_SPI_Comm.d \ -./Drivers/FPGA/FPGA_SSI_Comm.d - -OBJS += \ -./Drivers/FPGA/FPGA.obj \ -./Drivers/FPGA/FPGA_SPI_Comm.obj \ -./Drivers/FPGA/FPGA_SSI_Comm.obj - -OBJS__QUOTED += \ -"Drivers\FPGA\FPGA.obj" \ -"Drivers\FPGA\FPGA_SPI_Comm.obj" \ -"Drivers\FPGA\FPGA_SSI_Comm.obj" - -C_DEPS__QUOTED += \ -"Drivers\FPGA\FPGA.d" \ -"Drivers\FPGA\FPGA_SPI_Comm.d" \ -"Drivers\FPGA\FPGA_SSI_Comm.d" - -C_SRCS__QUOTED += \ -"../Drivers/FPGA/FPGA.c" \ -"../Drivers/FPGA/FPGA_SPI_Comm.c" \ -"../Drivers/FPGA/FPGA_SSI_Comm.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/910d4d8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/910d4d8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/910d4d8b9571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/9116e5388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/9116e5388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/9116e5388871001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/c0d88359cf6e001a1c4ce2378ee7c6e4 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/c0d88359cf6e001a1c4ce2378ee7c6e4 deleted file mode 100644 index b29f2bcc0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4c/c0d88359cf6e001a1c4ce2378ee7c6e4 +++ /dev/null @@ -1,485 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -/* ----------------------- System includes ----------------------------------*/ -#include "stdlib.h" -#include "string.h" - -/* ----------------------- Platform includes --------------------------------*/ -#include "port.h" - -/* ----------------------- Modbus includes ----------------------------------*/ -#include "mb.h" -#include "mbconfig.h" -#include "mbascii.h" -#include "mbframe.h" - -#include "mbcrc.h" -#include "mbport.h" - -#if MB_ASCII_ENABLED > 0 - -/* ----------------------- Defines ------------------------------------------*/ -#define MB_ASCII_DEFAULT_CR '\r' /*!< Default CR character for Modbus ASCII. */ -#define MB_ASCII_DEFAULT_LF '\n' /*!< Default LF character for Modbus ASCII. */ -#define MB_SER_PDU_SIZE_MIN 3 /*!< Minimum size of a Modbus ASCII frame. */ -#define MB_SER_PDU_SIZE_MAX 256 /*!< Maximum size of a Modbus ASCII frame. */ -#define MB_SER_PDU_SIZE_LRC 1 /*!< Size of LRC field in PDU. */ -#define MB_SER_PDU_ADDR_OFF 0 /*!< Offset of slave address in Ser-PDU. */ -#define MB_SER_PDU_PDU_OFF 1 /*!< Offset of Modbus-PDU in Ser-PDU. */ - -/* ----------------------- Type definitions ---------------------------------*/ -typedef enum -{ - STATE_RX_IDLE, /*!< Receiver is in idle state. */ - STATE_RX_RCV, /*!< Frame is beeing received. */ - STATE_RX_WAIT_EOF /*!< Wait for End of Frame. */ -} eMBRcvState; - -typedef enum -{ - STATE_TX_IDLE, /*!< Transmitter is in idle state. */ - STATE_TX_START, /*!< Starting transmission (':' sent). */ - STATE_TX_DATA, /*!< Sending of data (Address, Data, LRC). */ - STATE_TX_END, /*!< End of transmission. */ - STATE_TX_NOTIFY /*!< Notify sender that the frame has been sent. */ -} eMBSndState; - -typedef enum -{ - BYTE_HIGH_NIBBLE, /*!< Character for high nibble of byte. */ - BYTE_LOW_NIBBLE /*!< Character for low nibble of byte. */ -} eMBBytePos; - -/* ----------------------- Static functions ---------------------------------*/ -static UCHAR prvucMBCHAR2BIN( UCHAR ucCharacter ); - -static UCHAR prvucMBBIN2CHAR( UCHAR ucByte ); - -static UCHAR prvucMBLRC( UCHAR * pucFrame, USHORT usLen ); - -/* ----------------------- Static variables ---------------------------------*/ -static volatile eMBSndState eSndState; -static volatile eMBRcvState eRcvState; - -/* We reuse the Modbus RTU buffer because only one buffer is needed and the - * RTU buffer is bigger. */ -extern volatile UCHAR ucRTUBuf[]; -static volatile UCHAR *ucASCIIBuf = ucRTUBuf; - -static volatile USHORT usRcvBufferPos; -static volatile eMBBytePos eBytePos; - -static volatile UCHAR *pucSndBufferCur; -static volatile USHORT usSndBufferCount; - -static volatile UCHAR ucLRC; -static volatile UCHAR ucMBLFCharacter; - -/* ----------------------- Start implementation -----------------------------*/ -eMBErrorCode -eMBASCIIInit( UCHAR ucSlaveAddress, UCHAR ucPort, ULONG ulBaudRate, eMBParity eParity ) -{ - eMBErrorCode eStatus = MB_ENOERR; - ( void )ucSlaveAddress; - - ENTER_CRITICAL_SECTION( ); - ucMBLFCharacter = MB_ASCII_DEFAULT_LF; - - if( xMBPortSerialInit( ucPort, ulBaudRate, 7, eParity ) != TRUE ) - { - eStatus = MB_EPORTERR; - } - else if( xMBPortTimersInit( MB_ASCII_TIMEOUT_SEC * 20000UL ) != TRUE ) - { - eStatus = MB_EPORTERR; - } - - EXIT_CRITICAL_SECTION( ); - - return eStatus; -} - -void -eMBASCIIStart( void ) -{ - ENTER_CRITICAL_SECTION( ); - vMBPortSerialEnable( TRUE, FALSE ); - eRcvState = STATE_RX_IDLE; - EXIT_CRITICAL_SECTION( ); - - /* No special startup required for ASCII. */ - ( void )xMBPortEventPost( EV_READY ); -} - -void -eMBASCIIStop( void ) -{ - ENTER_CRITICAL_SECTION( ); - vMBPortSerialEnable( FALSE, FALSE ); - vMBPortTimersDisable( ); - EXIT_CRITICAL_SECTION( ); -} - -eMBErrorCode -eMBASCIIReceive( UCHAR * pucRcvAddress, UCHAR ** pucFrame, USHORT * pusLength ) -{ - eMBErrorCode eStatus = MB_ENOERR; - - ENTER_CRITICAL_SECTION( ); - assert( usRcvBufferPos < MB_SER_PDU_SIZE_MAX ); - - /* Length and CRC check */ - if( ( usRcvBufferPos >= MB_SER_PDU_SIZE_MIN ) - && ( prvucMBLRC( ( UCHAR * ) ucASCIIBuf, usRcvBufferPos ) == 0 ) ) - { - /* Save the address field. All frames are passed to the upper layed - * and the decision if a frame is used is done there. - */ - *pucRcvAddress = ucASCIIBuf[MB_SER_PDU_ADDR_OFF]; - - /* Total length of Modbus-PDU is Modbus-Serial-Line-PDU minus - * size of address field and CRC checksum. - */ - *pusLength = ( USHORT )( usRcvBufferPos - MB_SER_PDU_PDU_OFF - MB_SER_PDU_SIZE_LRC ); - - /* Return the start of the Modbus PDU to the caller. */ - *pucFrame = ( UCHAR * ) & ucASCIIBuf[MB_SER_PDU_PDU_OFF]; - } - else - { - eStatus = MB_EIO; - } - EXIT_CRITICAL_SECTION( ); - return eStatus; -} - -eMBErrorCode -eMBASCIISend( UCHAR ucSlaveAddress, const UCHAR * pucFrame, USHORT usLength ) -{ - eMBErrorCode eStatus = MB_ENOERR; - UCHAR usLRC; - - ENTER_CRITICAL_SECTION( ); - /* Check if the receiver is still in idle state. If not we where too - * slow with processing the received frame and the master sent another - * frame on the network. We have to abort sending the frame. - */ - if( eRcvState == STATE_RX_IDLE ) - { - /* First byte before the Modbus-PDU is the slave address. */ - pucSndBufferCur = ( UCHAR * ) pucFrame - 1; - usSndBufferCount = 1; - - /* Now copy the Modbus-PDU into the Modbus-Serial-Line-PDU. */ - pucSndBufferCur[MB_SER_PDU_ADDR_OFF] = ucSlaveAddress; - usSndBufferCount += usLength; - - /* Calculate LRC checksum for Modbus-Serial-Line-PDU. */ - usLRC = prvucMBLRC( ( UCHAR * ) pucSndBufferCur, usSndBufferCount ); - ucASCIIBuf[usSndBufferCount++] = usLRC; - - /* Activate the transmitter. */ - eSndState = STATE_TX_START; - vMBPortSerialEnable( FALSE, TRUE ); - } - else - { - eStatus = MB_EIO; - } - EXIT_CRITICAL_SECTION( ); - return eStatus; -} - -BOOL -xMBASCIIReceiveFSM( void ) -{ - BOOL xNeedPoll = FALSE; - UCHAR ucByte; - UCHAR ucResult; - - assert( eSndState == STATE_TX_IDLE ); - - ( void )xMBPortSerialGetByte( ( CHAR * ) & ucByte ); - switch ( eRcvState ) - { - /* A new character is received. If the character is a ':' the input - * buffer is cleared. A CR-character signals the end of the data - * block. Other characters are part of the data block and their - * ASCII value is converted back to a binary representation. - */ - case STATE_RX_RCV: - /* Enable timer for character timeout. */ - vMBPortTimersEnable( ); - if( ucByte == ':' ) - { - /* Empty receive buffer. */ - eBytePos = BYTE_HIGH_NIBBLE; - usRcvBufferPos = 0; - } - else if( ucByte == MB_ASCII_DEFAULT_CR ) - { - eRcvState = STATE_RX_WAIT_EOF; - } - else - { - ucResult = prvucMBCHAR2BIN( ucByte ); - switch ( eBytePos ) - { - /* High nibble of the byte comes first. We check for - * a buffer overflow here. */ - case BYTE_HIGH_NIBBLE: - if( usRcvBufferPos < MB_SER_PDU_SIZE_MAX ) - { - ucASCIIBuf[usRcvBufferPos] = ( UCHAR )( ucResult << 4 ); - eBytePos = BYTE_LOW_NIBBLE; - break; - } - else - { - /* not handled in Modbus specification but seems - * a resonable implementation. */ - eRcvState = STATE_RX_IDLE; - /* Disable previously activated timer because of error state. */ - vMBPortTimersDisable( ); - } - break; - - case BYTE_LOW_NIBBLE: - ucASCIIBuf[usRcvBufferPos] |= ucResult; - usRcvBufferPos++; - eBytePos = BYTE_HIGH_NIBBLE; - break; - } - } - break; - - case STATE_RX_WAIT_EOF: - if( ucByte == ucMBLFCharacter ) - { - /* Disable character timeout timer because all characters are - * received. */ - vMBPortTimersDisable( ); - /* Receiver is again in idle state. */ - eRcvState = STATE_RX_IDLE; - - /* Notify the caller of eMBASCIIReceive that a new frame - * was received. */ - xNeedPoll = xMBPortEventPost( EV_FRAME_RECEIVED ); - } - else if( ucByte == ':' ) - { - /* Empty receive buffer and back to receive state. */ - eBytePos = BYTE_HIGH_NIBBLE; - usRcvBufferPos = 0; - eRcvState = STATE_RX_RCV; - - /* Enable timer for character timeout. */ - vMBPortTimersEnable( ); - } - else - { - /* Frame is not okay. Delete entire frame. */ - eRcvState = STATE_RX_IDLE; - } - break; - - case STATE_RX_IDLE: - if( ucByte == ':' ) - { - /* Enable timer for character timeout. */ - vMBPortTimersEnable( ); - /* Reset the input buffers to store the frame. */ - usRcvBufferPos = 0;; - eBytePos = BYTE_HIGH_NIBBLE; - eRcvState = STATE_RX_RCV; - } - break; - } - - return xNeedPoll; -} - -BOOL -xMBASCIITransmitFSM( void ) -{ - BOOL xNeedPoll = FALSE; - UCHAR ucByte; - - assert( eRcvState == STATE_RX_IDLE ); - switch ( eSndState ) - { - /* Start of transmission. The start of a frame is defined by sending - * the character ':'. */ - case STATE_TX_START: - ucByte = ':'; - xMBPortSerialPutByte( ( CHAR )ucByte ); - eSndState = STATE_TX_DATA; - eBytePos = BYTE_HIGH_NIBBLE; - break; - - /* Send the data block. Each data byte is encoded as a character hex - * stream with the high nibble sent first and the low nibble sent - * last. If all data bytes are exhausted we send a '\r' character - * to end the transmission. */ - case STATE_TX_DATA: - if( usSndBufferCount > 0 ) - { - switch ( eBytePos ) - { - case BYTE_HIGH_NIBBLE: - ucByte = prvucMBBIN2CHAR( ( UCHAR )( *pucSndBufferCur >> 4 ) ); - xMBPortSerialPutByte( ( CHAR ) ucByte ); - eBytePos = BYTE_LOW_NIBBLE; - break; - - case BYTE_LOW_NIBBLE: - ucByte = prvucMBBIN2CHAR( ( UCHAR )( *pucSndBufferCur & 0x0F ) ); - xMBPortSerialPutByte( ( CHAR )ucByte ); - pucSndBufferCur++; - eBytePos = BYTE_HIGH_NIBBLE; - usSndBufferCount--; - break; - } - } - else - { - xMBPortSerialPutByte( MB_ASCII_DEFAULT_CR ); - eSndState = STATE_TX_END; - } - break; - - /* Finish the frame by sending a LF character. */ - case STATE_TX_END: - xMBPortSerialPutByte( ( CHAR )ucMBLFCharacter ); - /* We need another state to make sure that the CR character has - * been sent. */ - eSndState = STATE_TX_NOTIFY; - break; - - /* Notify the task which called eMBASCIISend that the frame has - * been sent. */ - case STATE_TX_NOTIFY: - eSndState = STATE_TX_IDLE; - xNeedPoll = xMBPortEventPost( EV_FRAME_SENT ); - - /* Disable transmitter. This prevents another transmit buffer - * empty interrupt. */ - vMBPortSerialEnable( TRUE, FALSE ); - eSndState = STATE_TX_IDLE; - break; - - /* We should not get a transmitter event if the transmitter is in - * idle state. */ - case STATE_TX_IDLE: - /* enable receiver/disable transmitter. */ - vMBPortSerialEnable( TRUE, FALSE ); - break; - } - - return xNeedPoll; -} - -BOOL -xMBASCIITimerT1SExpired( void ) -{ - switch ( eRcvState ) - { - /* If we have a timeout we go back to the idle state and wait for - * the next frame. - */ - case STATE_RX_RCV: - case STATE_RX_WAIT_EOF: - eRcvState = STATE_RX_IDLE; - break; - - default: - assert( ( eRcvState == STATE_RX_RCV ) || ( eRcvState == STATE_RX_WAIT_EOF ) ); - break; - } - vMBPortTimersDisable( ); - - /* no context switch required. */ - return FALSE; -} - - -static UCHAR -prvucMBCHAR2BIN( UCHAR ucCharacter ) -{ - if( ( ucCharacter >= '0' ) && ( ucCharacter <= '9' ) ) - { - return ( UCHAR )( ucCharacter - '0' ); - } - else if( ( ucCharacter >= 'A' ) && ( ucCharacter <= 'F' ) ) - { - return ( UCHAR )( ucCharacter - 'A' + 0x0A ); - } - else - { - return 0xFF; - } -} - -static UCHAR -prvucMBBIN2CHAR( UCHAR ucByte ) -{ - if( ucByte <= 0x09 ) - { - return ( UCHAR )( '0' + ucByte ); - } - else if( ( ucByte >= 0x0A ) && ( ucByte <= 0x0F ) ) - { - return ( UCHAR )( ucByte - 0x0A + 'A' ); - } - else - { - /* Programming error. */ - assert( 0 ); - } - return '0'; -} - - -static UCHAR -prvucMBLRC( UCHAR * pucFrame, USHORT usLen ) -{ - UCHAR ucLRC = 0; /* LRC char initialized */ - - while( usLen-- ) - { - ucLRC += *pucFrame++; /* Add buffer byte without carry */ - } - - /* Return twos complement */ - ucLRC = ( UCHAR ) ( -( ( CHAR ) ucLRC ) ); - return ucLRC; -} - -#endif diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/10de72acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/10de72acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 522384cb6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/10de72acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/FPGA/Motors_Driver/L6470.c - -C_DEPS += \ -./Drivers/FPGA/Motors_Driver/L6470.d - -OBJS += \ -./Drivers/FPGA/Motors_Driver/L6470.obj - -OBJS__QUOTED += \ -"Drivers\FPGA\Motors_Driver\L6470.obj" - -C_DEPS__QUOTED += \ -"Drivers\FPGA\Motors_Driver\L6470.d" - -C_SRCS__QUOTED += \ -"../Drivers/FPGA/Motors_Driver/L6470.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/11926b8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/11926b8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/11926b8b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/200a91ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/200a91ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/200a91ab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/4046b918b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/4046b918b66e001a173da96cce181ab0 deleted file mode 100644 index b37735f09..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/4046b918b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/8022c8b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/8022c8b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/8022c8b48771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/80f6ce388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/80f6ce388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/80f6ce388871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/a012968db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/a012968db56e001a173da96cce181ab0 deleted file mode 100644 index f770e24a4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/a012968db56e001a173da96cce181ab0 +++ /dev/null @@ -1,62 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ -../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ -../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ -../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ -../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ -../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ -../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c - -C_DEPS += \ -./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ -./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ -./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ -./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ -./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ -./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ -./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d - -OBJS += \ -./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ -./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ -./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ -./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ -./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ -./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ -./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ -"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ -"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ -"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ -"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ -"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ -"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ -"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ -"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ -"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ -"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ -"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ -"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ -"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ -"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ -"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ -"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ -"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ -"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/c0348de58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/c0348de58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/c0348de58f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/c0fa238eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/c0fa238eb56e001a173da96cce181ab0 deleted file mode 100644 index 1ff1fba33..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/c0fa238eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/00a69ecc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/00a69ecc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/00a69ecc9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/218d21b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/218d21b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/218d21b58771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/5030a98eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/5030a98eb56e001a173da96cce181ab0 deleted file mode 100644 index 6ced92348..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/5030a98eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,56 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/IDS/IDS_BIT.c \ -../Modules/IDS/IDS_Cleaning.c \ -../Modules/IDS/IDS_dispenser.c \ -../Modules/IDS/IDS_init.c \ -../Modules/IDS/IDS_maint.c \ -../Modules/IDS/IDS_print.c - -C_DEPS += \ -./Modules/IDS/IDS_BIT.d \ -./Modules/IDS/IDS_Cleaning.d \ -./Modules/IDS/IDS_dispenser.d \ -./Modules/IDS/IDS_init.d \ -./Modules/IDS/IDS_maint.d \ -./Modules/IDS/IDS_print.d - -OBJS += \ -./Modules/IDS/IDS_BIT.obj \ -./Modules/IDS/IDS_Cleaning.obj \ -./Modules/IDS/IDS_dispenser.obj \ -./Modules/IDS/IDS_init.obj \ -./Modules/IDS/IDS_maint.obj \ -./Modules/IDS/IDS_print.obj - -OBJS__QUOTED += \ -"Modules\IDS\IDS_BIT.obj" \ -"Modules\IDS\IDS_Cleaning.obj" \ -"Modules\IDS\IDS_dispenser.obj" \ -"Modules\IDS\IDS_init.obj" \ -"Modules\IDS\IDS_maint.obj" \ -"Modules\IDS\IDS_print.obj" - -C_DEPS__QUOTED += \ -"Modules\IDS\IDS_BIT.d" \ -"Modules\IDS\IDS_Cleaning.d" \ -"Modules\IDS\IDS_dispenser.d" \ -"Modules\IDS\IDS_init.d" \ -"Modules\IDS\IDS_maint.d" \ -"Modules\IDS\IDS_print.d" - -C_SRCS__QUOTED += \ -"../Modules/IDS/IDS_BIT.c" \ -"../Modules/IDS/IDS_Cleaning.c" \ -"../Modules/IDS/IDS_dispenser.c" \ -"../Modules/IDS/IDS_init.c" \ -"../Modules/IDS/IDS_maint.c" \ -"../Modules/IDS/IDS_print.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/a00a38429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/a00a38429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/a00a38429b71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/e0d0b5509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/e0d0b5509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/e0d0b5509571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/e15fb3509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/e15fb3509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/e15fb3509571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/f1d2edb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/f1d2edb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/f1d2edb48771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/60c13e429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/60c13e429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/60c13e429b71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/80f3309b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/80f3309b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/80f3309b8f71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/c0567e8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/c0567e8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/c0567e8b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/c07297ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/c07297ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/c07297ab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/d11ad5b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/d11ad5b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/d11ad5b48771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/f0a4308eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/f0a4308eb56e001a173da96cce181ab0 deleted file mode 100644 index d1cc8c142..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/f0a4308eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/f0f0d4ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/f0f0d4ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/f0f0d4ab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/f192cd998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/f192cd998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/f192cd998f71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/0198f7398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/0198f7398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/0198f7398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/10cb4de39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/10cb4de39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/10cb4de39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/10f030cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/10f030cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/10f030cc9071001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/607442abb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/607442abb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 4c77c8969..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/607442abb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,43 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/607ac2ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/607ac2ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/607ac2ab9071001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/c0e68de78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/c0e68de78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/c0e68de78f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/d0e402e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/d0e402e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/d0e402e78f71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/d11b0d3a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/d11b0d3a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/d11b0d3a8871001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/e0d6ad429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/e0d6ad429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/e0d6ad429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/20a153adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/20a153adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 94a2fa3e9..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/20a153adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/309f966e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/309f966e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/309f966e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/402e0c519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/402e0c519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/402e0c519571001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/6048b7ca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/6048b7ca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/6048b7ca9071001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/704fdacc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/704fdacc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/704fdacc9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/70ffd28eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/70ffd28eb56e001a173da96cce181ab0 deleted file mode 100644 index 93a09e27b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/70ffd28eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,188 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/Stubs_Handler/Calculate.c \ -../Modules/Stubs_Handler/Progress.c \ -../Modules/Stubs_Handler/StubRealTimeUsage.c \ -../Modules/Stubs_Handler/Stub_Cartridge.c \ -../Modules/Stubs_Handler/Stub_Dancer.c \ -../Modules/Stubs_Handler/Stub_Dispenser.c \ -../Modules/Stubs_Handler/Stub_ExtFlash.c \ -../Modules/Stubs_Handler/Stub_FPGARWReg.c \ -../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ -../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ -../Modules/Stubs_Handler/Stub_GPIO.c \ -../Modules/Stubs_Handler/Stub_HW_Version.c \ -../Modules/Stubs_Handler/Stub_Heater.c \ -../Modules/Stubs_Handler/Stub_I2C.c \ -../Modules/Stubs_Handler/Stub_IntADC.c \ -../Modules/Stubs_Handler/Stub_L6470.c \ -../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ -../Modules/Stubs_Handler/Stub_Motor.c \ -../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ -../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ -../Modules/Stubs_Handler/Stub_SpeedSensor.c \ -../Modules/Stubs_Handler/Stub_Status.c \ -../Modules/Stubs_Handler/Stub_SteperMotor.c \ -../Modules/Stubs_Handler/Stub_TempSensor.c \ -../Modules/Stubs_Handler/Stub_TivaReg.c \ -../Modules/Stubs_Handler/Stub_Valve.c \ -../Modules/Stubs_Handler/User_Leds.c \ -../Modules/Stubs_Handler/temperature_sensor.c - -C_DEPS += \ -./Modules/Stubs_Handler/Calculate.d \ -./Modules/Stubs_Handler/Progress.d \ -./Modules/Stubs_Handler/StubRealTimeUsage.d \ -./Modules/Stubs_Handler/Stub_Cartridge.d \ -./Modules/Stubs_Handler/Stub_Dancer.d \ -./Modules/Stubs_Handler/Stub_Dispenser.d \ -./Modules/Stubs_Handler/Stub_ExtFlash.d \ -./Modules/Stubs_Handler/Stub_FPGARWReg.d \ -./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ -./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ -./Modules/Stubs_Handler/Stub_GPIO.d \ -./Modules/Stubs_Handler/Stub_HW_Version.d \ -./Modules/Stubs_Handler/Stub_Heater.d \ -./Modules/Stubs_Handler/Stub_I2C.d \ -./Modules/Stubs_Handler/Stub_IntADC.d \ -./Modules/Stubs_Handler/Stub_L6470.d \ -./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ -./Modules/Stubs_Handler/Stub_Motor.d \ -./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ -./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ -./Modules/Stubs_Handler/Stub_SpeedSensor.d \ -./Modules/Stubs_Handler/Stub_Status.d \ -./Modules/Stubs_Handler/Stub_SteperMotor.d \ -./Modules/Stubs_Handler/Stub_TempSensor.d \ -./Modules/Stubs_Handler/Stub_TivaReg.d \ -./Modules/Stubs_Handler/Stub_Valve.d \ -./Modules/Stubs_Handler/User_Leds.d \ -./Modules/Stubs_Handler/temperature_sensor.d - -OBJS += \ -./Modules/Stubs_Handler/Calculate.obj \ -./Modules/Stubs_Handler/Progress.obj \ -./Modules/Stubs_Handler/StubRealTimeUsage.obj \ -./Modules/Stubs_Handler/Stub_Cartridge.obj \ -./Modules/Stubs_Handler/Stub_Dancer.obj \ -./Modules/Stubs_Handler/Stub_Dispenser.obj \ -./Modules/Stubs_Handler/Stub_ExtFlash.obj \ -./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ -./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ -./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ -./Modules/Stubs_Handler/Stub_GPIO.obj \ -./Modules/Stubs_Handler/Stub_HW_Version.obj \ -./Modules/Stubs_Handler/Stub_Heater.obj \ -./Modules/Stubs_Handler/Stub_I2C.obj \ -./Modules/Stubs_Handler/Stub_IntADC.obj \ -./Modules/Stubs_Handler/Stub_L6470.obj \ -./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ -./Modules/Stubs_Handler/Stub_Motor.obj \ -./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ -./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ -./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ -./Modules/Stubs_Handler/Stub_Status.obj \ -./Modules/Stubs_Handler/Stub_SteperMotor.obj \ -./Modules/Stubs_Handler/Stub_TempSensor.obj \ -./Modules/Stubs_Handler/Stub_TivaReg.obj \ -./Modules/Stubs_Handler/Stub_Valve.obj \ -./Modules/Stubs_Handler/User_Leds.obj \ -./Modules/Stubs_Handler/temperature_sensor.obj - -OBJS__QUOTED += \ -"Modules\Stubs_Handler\Calculate.obj" \ -"Modules\Stubs_Handler\Progress.obj" \ -"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ -"Modules\Stubs_Handler\Stub_Cartridge.obj" \ -"Modules\Stubs_Handler\Stub_Dancer.obj" \ -"Modules\Stubs_Handler\Stub_Dispenser.obj" \ -"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ -"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ -"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ -"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ -"Modules\Stubs_Handler\Stub_GPIO.obj" \ -"Modules\Stubs_Handler\Stub_HW_Version.obj" \ -"Modules\Stubs_Handler\Stub_Heater.obj" \ -"Modules\Stubs_Handler\Stub_I2C.obj" \ -"Modules\Stubs_Handler\Stub_IntADC.obj" \ -"Modules\Stubs_Handler\Stub_L6470.obj" \ -"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ -"Modules\Stubs_Handler\Stub_Motor.obj" \ -"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ -"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ -"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ -"Modules\Stubs_Handler\Stub_Status.obj" \ -"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ -"Modules\Stubs_Handler\Stub_TempSensor.obj" \ -"Modules\Stubs_Handler\Stub_TivaReg.obj" \ -"Modules\Stubs_Handler\Stub_Valve.obj" \ -"Modules\Stubs_Handler\User_Leds.obj" \ -"Modules\Stubs_Handler\temperature_sensor.obj" - -C_DEPS__QUOTED += \ -"Modules\Stubs_Handler\Calculate.d" \ -"Modules\Stubs_Handler\Progress.d" \ -"Modules\Stubs_Handler\StubRealTimeUsage.d" \ -"Modules\Stubs_Handler\Stub_Cartridge.d" \ -"Modules\Stubs_Handler\Stub_Dancer.d" \ -"Modules\Stubs_Handler\Stub_Dispenser.d" \ -"Modules\Stubs_Handler\Stub_ExtFlash.d" \ -"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ -"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ -"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ -"Modules\Stubs_Handler\Stub_GPIO.d" \ -"Modules\Stubs_Handler\Stub_HW_Version.d" \ -"Modules\Stubs_Handler\Stub_Heater.d" \ -"Modules\Stubs_Handler\Stub_I2C.d" \ -"Modules\Stubs_Handler\Stub_IntADC.d" \ -"Modules\Stubs_Handler\Stub_L6470.d" \ -"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ -"Modules\Stubs_Handler\Stub_Motor.d" \ -"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ -"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ -"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ -"Modules\Stubs_Handler\Stub_Status.d" \ -"Modules\Stubs_Handler\Stub_SteperMotor.d" \ -"Modules\Stubs_Handler\Stub_TempSensor.d" \ -"Modules\Stubs_Handler\Stub_TivaReg.d" \ -"Modules\Stubs_Handler\Stub_Valve.d" \ -"Modules\Stubs_Handler\User_Leds.d" \ -"Modules\Stubs_Handler\temperature_sensor.d" - -C_SRCS__QUOTED += \ -"../Modules/Stubs_Handler/Calculate.c" \ -"../Modules/Stubs_Handler/Progress.c" \ -"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ -"../Modules/Stubs_Handler/Stub_Cartridge.c" \ -"../Modules/Stubs_Handler/Stub_Dancer.c" \ -"../Modules/Stubs_Handler/Stub_Dispenser.c" \ -"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ -"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ -"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ -"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ -"../Modules/Stubs_Handler/Stub_GPIO.c" \ -"../Modules/Stubs_Handler/Stub_HW_Version.c" \ -"../Modules/Stubs_Handler/Stub_Heater.c" \ -"../Modules/Stubs_Handler/Stub_I2C.c" \ -"../Modules/Stubs_Handler/Stub_IntADC.c" \ -"../Modules/Stubs_Handler/Stub_L6470.c" \ -"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ -"../Modules/Stubs_Handler/Stub_Motor.c" \ -"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ -"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ -"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ -"../Modules/Stubs_Handler/Stub_Status.c" \ -"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ -"../Modules/Stubs_Handler/Stub_TempSensor.c" \ -"../Modules/Stubs_Handler/Stub_TivaReg.c" \ -"../Modules/Stubs_Handler/Stub_Valve.c" \ -"../Modules/Stubs_Handler/User_Leds.c" \ -"../Modules/Stubs_Handler/temperature_sensor.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/804d21aa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/804d21aa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/804d21aa9071001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/e038138b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/e038138b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/e038138b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/10926b8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/10926b8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/10926b8b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/20fe566e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/20fe566e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/20fe566e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/50c8f9a99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/50c8f9a99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/50c8f9a99071001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/8193cab48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/8193cab48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/8193cab48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/d0aa99adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/d0aa99adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 2e9e44918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/d0aa99adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/00a8d7b38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/00a8d7b38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/00a8d7b38771001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/1056e6ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/1056e6ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/1056e6ab9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/707a038eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/707a038eb56e001a173da96cce181ab0 deleted file mode 100644 index 88bcc36e7..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/707a038eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/I2C.c \ -../Drivers/I2C_Communication/I2C_Comm.c \ -../Drivers/I2C_Communication/I2C_FIFO.c \ -../Drivers/I2C_Communication/I2C_Task.c - -C_DEPS += \ -./Drivers/I2C_Communication/I2C.d \ -./Drivers/I2C_Communication/I2C_Comm.d \ -./Drivers/I2C_Communication/I2C_FIFO.d \ -./Drivers/I2C_Communication/I2C_Task.d - -OBJS += \ -./Drivers/I2C_Communication/I2C.obj \ -./Drivers/I2C_Communication/I2C_Comm.obj \ -./Drivers/I2C_Communication/I2C_FIFO.obj \ -./Drivers/I2C_Communication/I2C_Task.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\I2C.obj" \ -"Drivers\I2C_Communication\I2C_Comm.obj" \ -"Drivers\I2C_Communication\I2C_FIFO.obj" \ -"Drivers\I2C_Communication\I2C_Task.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\I2C.d" \ -"Drivers\I2C_Communication\I2C_Comm.d" \ -"Drivers\I2C_Communication\I2C_FIFO.d" \ -"Drivers\I2C_Communication\I2C_Task.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/I2C.c" \ -"../Drivers/I2C_Communication/I2C_Comm.c" \ -"../Drivers/I2C_Communication/I2C_FIFO.c" \ -"../Drivers/I2C_Communication/I2C_Task.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/709acf509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/709acf509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/709acf509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/a024108eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/a024108eb56e001a173da96cce181ab0 deleted file mode 100644 index 1997a7dcc..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/a024108eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/a0aa57ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/a0aa57ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/a0aa57ab9071001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/103f14e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/103f14e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/103f14e68f71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/405ed16e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/405ed16e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/405ed16e8771001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/516d189c8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/516d189c8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/516d189c8f71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/708133e29a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/708133e29a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/708133e29a71001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/8054f58eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/8054f58eb56e001a173da96cce181ab0 deleted file mode 100644 index 2e9e44918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/8054f58eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/80b54d429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/80b54d429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/80b54d429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/913d47b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/913d47b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/913d47b58771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/a0de31e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/a0de31e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/a0de31e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/d0a6f3acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/d0a6f3acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 4897c67e4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/d0a6f3acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/e004c4398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/e004c4398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/e004c4398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/001e0de78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/001e0de78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/001e0de78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/30a7dae78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/30a7dae78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/30a7dae78f71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/40add5388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/40add5388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/40add5388871001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/40e0b8b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/40e0b8b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/40e0b8b48771001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/40e38a18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/40e38a18b66e001a173da96cce181ab0 deleted file mode 100644 index 4897c67e4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/40e38a18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/41cbfab48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/41cbfab48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/41cbfab48771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/50131058f46c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/50131058f46c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/50131058f46c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/f0b2048eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/f0b2048eb56e001a173da96cce181ab0 deleted file mode 100644 index 125bfabce..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/f0b2048eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/004d80e0d56c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/004d80e0d56c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index e69de29bb..000000000 diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/30b0a6e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/30b0a6e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/30b0a6e58f71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/40d75e509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/40d75e509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/40d75e509571001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/5110296e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/5110296e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/5110296e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/70987c509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/70987c509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/70987c509571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/70e09e18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/70e09e18b66e001a173da96cce181ab0 deleted file mode 100644 index 2ef8f47b3..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/70e09e18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/SSI_Comm/SSI_Comm.c - -C_DEPS += \ -./Drivers/SSI_Comm/SSI_Comm.d - -OBJS += \ -./Drivers/SSI_Comm/SSI_Comm.obj - -OBJS__QUOTED += \ -"Drivers\SSI_Comm\SSI_Comm.obj" - -C_DEPS__QUOTED += \ -"Drivers\SSI_Comm\SSI_Comm.d" - -C_SRCS__QUOTED += \ -"../Drivers/SSI_Comm/SSI_Comm.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/a05107e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/a05107e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/a05107e78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/a0deb96e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/a0deb96e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/a0deb96e8771001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/b138026c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/b138026c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/b138026c8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/e1d90fb58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/e1d90fb58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/e1d90fb58771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/00bca4b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/00bca4b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/00bca4b48771001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/00fbcb9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/00fbcb9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/00fbcb9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/01e8ee8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/01e8ee8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/01e8ee8a9571001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/102a2bb58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/102a2bb58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/102a2bb58771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/3044bbe19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/3044bbe19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/3044bbe19a71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/40b9fb8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/40b9fb8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/40b9fb8a9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/419b008b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/419b008b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/419b008b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/60c2b28db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/60c2b28db56e001a173da96cce181ab0 deleted file mode 100644 index 63fadabb4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/60c2b28db56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c - -C_DEPS += \ -./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d - -OBJS += \ -./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj - -OBJS__QUOTED += \ -"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" - -C_DEPS__QUOTED += \ -"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" - -C_SRCS__QUOTED += \ -"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/b0a59cb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/b0a59cb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/b0a59cb48771001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/d03bb21e066d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/d03bb21e066d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/d03bb21e066d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/4028be18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/4028be18b66e001a173da96cce181ab0 deleted file mode 100644 index fef65b56e..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/4028be18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/40399b429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/40399b429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/40399b429b71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/606ddfaa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/606ddfaa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/606ddfaa9071001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/70ddccb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/70ddccb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/70ddccb48771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/80e84fe68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/80e84fe68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/80e84fe68f71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/b0c73db58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/b0c73db58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/b0c73db58771001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/d012dc429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/d012dc429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/d012dc429b71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/d0ae20d60d6d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/d0ae20d60d6d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/d0ae20d60d6d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/e0ffd29b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/e0ffd29b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/e0ffd29b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/307376429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/307376429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/307376429b71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/702103abb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/702103abb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 0c7afdd70..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/702103abb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,152 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/IO/CreateRequest.pb-c.c \ -../Communication/PMR/IO/CreateResponse.pb-c.c \ -../Communication/PMR/IO/DeleteRequest.pb-c.c \ -../Communication/PMR/IO/DeleteResponse.pb-c.c \ -../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ -../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ -../Communication/PMR/IO/FileAttribute.pb-c.c \ -../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ -../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ -../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ -../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ -../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ -../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ -../Communication/PMR/IO/FileInfo.pb-c.c \ -../Communication/PMR/IO/FileUploadRequest.pb-c.c \ -../Communication/PMR/IO/FileUploadResponse.pb-c.c \ -../Communication/PMR/IO/GetFilesRequest.pb-c.c \ -../Communication/PMR/IO/GetFilesResponse.pb-c.c \ -../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ -../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ -../Communication/PMR/IO/KillProcessRequest.pb-c.c \ -../Communication/PMR/IO/KillProcessResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/IO/CreateRequest.pb-c.d \ -./Communication/PMR/IO/CreateResponse.pb-c.d \ -./Communication/PMR/IO/DeleteRequest.pb-c.d \ -./Communication/PMR/IO/DeleteResponse.pb-c.d \ -./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ -./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ -./Communication/PMR/IO/FileAttribute.pb-c.d \ -./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ -./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ -./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ -./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ -./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ -./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ -./Communication/PMR/IO/FileInfo.pb-c.d \ -./Communication/PMR/IO/FileUploadRequest.pb-c.d \ -./Communication/PMR/IO/FileUploadResponse.pb-c.d \ -./Communication/PMR/IO/GetFilesRequest.pb-c.d \ -./Communication/PMR/IO/GetFilesResponse.pb-c.d \ -./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ -./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ -./Communication/PMR/IO/KillProcessRequest.pb-c.d \ -./Communication/PMR/IO/KillProcessResponse.pb-c.d - -OBJS += \ -./Communication/PMR/IO/CreateRequest.pb-c.obj \ -./Communication/PMR/IO/CreateResponse.pb-c.obj \ -./Communication/PMR/IO/DeleteRequest.pb-c.obj \ -./Communication/PMR/IO/DeleteResponse.pb-c.obj \ -./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ -./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ -./Communication/PMR/IO/FileAttribute.pb-c.obj \ -./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ -./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ -./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ -./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ -./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ -./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ -./Communication/PMR/IO/FileInfo.pb-c.obj \ -./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ -./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ -./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ -./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ -./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ -./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ -./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ -./Communication/PMR/IO/KillProcessResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\IO\CreateRequest.pb-c.obj" \ -"Communication\PMR\IO\CreateResponse.pb-c.obj" \ -"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ -"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ -"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ -"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ -"Communication\PMR\IO\FileAttribute.pb-c.obj" \ -"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ -"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ -"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ -"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ -"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ -"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ -"Communication\PMR\IO\FileInfo.pb-c.obj" \ -"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ -"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ -"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ -"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ -"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ -"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ -"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ -"Communication\PMR\IO\KillProcessResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\IO\CreateRequest.pb-c.d" \ -"Communication\PMR\IO\CreateResponse.pb-c.d" \ -"Communication\PMR\IO\DeleteRequest.pb-c.d" \ -"Communication\PMR\IO\DeleteResponse.pb-c.d" \ -"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ -"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ -"Communication\PMR\IO\FileAttribute.pb-c.d" \ -"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ -"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ -"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ -"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ -"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ -"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ -"Communication\PMR\IO\FileInfo.pb-c.d" \ -"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ -"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ -"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ -"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ -"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ -"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ -"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ -"Communication\PMR\IO\KillProcessResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/IO/CreateRequest.pb-c.c" \ -"../Communication/PMR/IO/CreateResponse.pb-c.c" \ -"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ -"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ -"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ -"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ -"../Communication/PMR/IO/FileAttribute.pb-c.c" \ -"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ -"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ -"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ -"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ -"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ -"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ -"../Communication/PMR/IO/FileInfo.pb-c.c" \ -"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ -"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ -"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ -"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ -"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ -"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ -"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ -"../Communication/PMR/IO/KillProcessResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/b05748e49a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/b05748e49a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/b05748e49a71001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/201c1fb58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/201c1fb58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/201c1fb58771001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/2094f7ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/2094f7ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/2094f7ab9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/30ec0de88f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/30ec0de88f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/30ec0de88f71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/40755ae39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/40755ae39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/40755ae39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/90c307b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/90c307b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/90c307b58771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/e0a7ac8db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/e0a7ac8db56e001a173da96cce181ab0 deleted file mode 100644 index 8cce4b3ae..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/e0a7ac8db56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c - -C_DEPS += \ -./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d - -OBJS += \ -./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj - -OBJS__QUOTED += \ -"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" - -C_DEPS__QUOTED += \ -"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" - -C_SRCS__QUOTED += \ -"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/f07ba58db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/f07ba58db56e001a173da96cce181ab0 deleted file mode 100644 index 6d62c79f6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/f07ba58db56e001a173da96cce181ab0 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/FPGA/FPGA.c \ -../Drivers/FPGA/FPGA_SPI_Comm.c \ -../Drivers/FPGA/FPGA_SSI_Comm.c - -C_DEPS += \ -./Drivers/FPGA/FPGA.d \ -./Drivers/FPGA/FPGA_SPI_Comm.d \ -./Drivers/FPGA/FPGA_SSI_Comm.d - -OBJS += \ -./Drivers/FPGA/FPGA.obj \ -./Drivers/FPGA/FPGA_SPI_Comm.obj \ -./Drivers/FPGA/FPGA_SSI_Comm.obj - -OBJS__QUOTED += \ -"Drivers\FPGA\FPGA.obj" \ -"Drivers\FPGA\FPGA_SPI_Comm.obj" \ -"Drivers\FPGA\FPGA_SSI_Comm.obj" - -C_DEPS__QUOTED += \ -"Drivers\FPGA\FPGA.d" \ -"Drivers\FPGA\FPGA_SPI_Comm.d" \ -"Drivers\FPGA\FPGA_SSI_Comm.d" - -C_SRCS__QUOTED += \ -"../Drivers/FPGA/FPGA.c" \ -"../Drivers/FPGA/FPGA_SPI_Comm.c" \ -"../Drivers/FPGA/FPGA_SSI_Comm.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/f084a8e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/f084a8e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/f084a8e58f71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/f0e963acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/f0e963acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 63fadabb4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/f0e963acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c - -C_DEPS += \ -./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d - -OBJS += \ -./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj - -OBJS__QUOTED += \ -"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" - -C_DEPS__QUOTED += \ -"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" - -C_SRCS__QUOTED += \ -"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/1076ad8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/1076ad8eb56e001a173da96cce181ab0 deleted file mode 100644 index 63bbc10a3..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/1076ad8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/1098659b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/1098659b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/1098659b8f71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/10bc08e88f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/10bc08e88f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/10bc08e88f71001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/20b38518b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/20b38518b66e001a173da96cce181ab0 deleted file mode 100644 index 2a1ae80e0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/20b38518b66e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ -../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ -./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ -./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ -"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ -"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ -"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/40364b3a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/40364b3a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/40364b3a8871001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/405e03adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/405e03adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 7bb4b0e24..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/405e03adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/SPI/SPI_Comm.c - -C_DEPS += \ -./Drivers/SPI/SPI_Comm.d - -OBJS += \ -./Drivers/SPI/SPI_Comm.obj - -OBJS__QUOTED += \ -"Drivers\SPI\SPI_Comm.obj" - -C_DEPS__QUOTED += \ -"Drivers\SPI\SPI_Comm.d" - -C_SRCS__QUOTED += \ -"../Drivers/SPI/SPI_Comm.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/60823f18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/60823f18b66e001a173da96cce181ab0 deleted file mode 100644 index 08394bc52..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/60823f18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/80a5a9acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/80a5a9acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 94a17d396..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/80a5a9acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/b019fdcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/b019fdcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/b019fdcc9071001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/b0ce13ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/b0ce13ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/b0ce13ac9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/c04ae78eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/c04ae78eb56e001a173da96cce181ab0 deleted file mode 100644 index 9389df8e2..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/c04ae78eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/Waste/Waste_BIT.c \ -../Modules/Waste/Waste_init.c \ -../Modules/Waste/Waste_maint.c \ -../Modules/Waste/Waste_print.c \ -../Modules/Waste/newWHS_init.c - -C_DEPS += \ -./Modules/Waste/Waste_BIT.d \ -./Modules/Waste/Waste_init.d \ -./Modules/Waste/Waste_maint.d \ -./Modules/Waste/Waste_print.d \ -./Modules/Waste/newWHS_init.d - -OBJS += \ -./Modules/Waste/Waste_BIT.obj \ -./Modules/Waste/Waste_init.obj \ -./Modules/Waste/Waste_maint.obj \ -./Modules/Waste/Waste_print.obj \ -./Modules/Waste/newWHS_init.obj - -OBJS__QUOTED += \ -"Modules\Waste\Waste_BIT.obj" \ -"Modules\Waste\Waste_init.obj" \ -"Modules\Waste\Waste_maint.obj" \ -"Modules\Waste\Waste_print.obj" \ -"Modules\Waste\newWHS_init.obj" - -C_DEPS__QUOTED += \ -"Modules\Waste\Waste_BIT.d" \ -"Modules\Waste\Waste_init.d" \ -"Modules\Waste\Waste_maint.d" \ -"Modules\Waste\Waste_print.d" \ -"Modules\Waste\newWHS_init.d" - -C_SRCS__QUOTED += \ -"../Modules/Waste/Waste_BIT.c" \ -"../Modules/Waste/Waste_init.c" \ -"../Modules/Waste/Waste_maint.c" \ -"../Modules/Waste/Waste_print.c" \ -"../Modules/Waste/newWHS_init.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/d0087816b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/d0087816b66e001a173da96cce181ab0 deleted file mode 100644 index a1de9654a..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/d0087816b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/Software_CRC/sw_crc.c - -C_DEPS += \ -./Common/Software_CRC/sw_crc.d - -OBJS += \ -./Common/Software_CRC/sw_crc.obj - -OBJS__QUOTED += \ -"Common\Software_CRC\sw_crc.obj" - -C_DEPS__QUOTED += \ -"Common\Software_CRC\sw_crc.d" - -C_SRCS__QUOTED += \ -"../Common/Software_CRC/sw_crc.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/e09f15cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/e09f15cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/e09f15cc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/00c0afacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/00c0afacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 9ec5d0604..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/00c0afacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/100091429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/100091429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/100091429b71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/10d830e49a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/10d830e49a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/10d830e49a71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/10e0dba99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/10e0dba99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/10e0dba99071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/312abbb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/312abbb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/312abbb48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/603eccab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/603eccab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/603eccab9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/61fb7a8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/61fb7a8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/61fb7a8b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/b0152a9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/b0152a9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/b0152a9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/d0279a429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/d0279a429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/d0279a429b71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/f0a4ae509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/f0a4ae509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/f0a4ae509571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/1002744f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/1002744f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/1002744f9571001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/30610e8cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/30610e8cb56e001a173da96cce181ab0 deleted file mode 100644 index 66f3efdee..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/30610e8cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/80dfca509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/80dfca509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/80dfca509571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/a0c971cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/a0c971cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/a0c971cc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/a0e6a929c36e001a17dd93e105fd0cb6 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/a0e6a929c36e001a17dd93e105fd0cb6 deleted file mode 100644 index be384fc52..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/a0e6a929c36e001a17dd93e105fd0cb6 +++ /dev/null @@ -1,140 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -/* ----------------------- System includes ----------------------------------*/ -#include "stdlib.h" -#include "string.h" - -/* ----------------------- Platform includes --------------------------------*/ -#include "port.h" - -/* ----------------------- Modbus includes ----------------------------------*/ -#include "mb.h" -#include "mbproto.h" - -/* ----------------------- Defines ------------------------------------------*/ -#define BITS_UCHAR 8U - -/* ----------------------- Start implementation -----------------------------*/ -void -xMBUtilSetBits( UCHAR * ucByteBuf, USHORT usBitOffset, UCHAR ucNBits, - UCHAR ucValue ) -{ - USHORT usWordBuf; - USHORT usMask; - USHORT usByteOffset; - USHORT usNPreBits; - USHORT usValue = ucValue; - - assert( ucNBits <= 8 ); - assert( ( size_t )BITS_UCHAR == sizeof( UCHAR ) * 8 ); - - /* Calculate byte offset for first byte containing the bit values starting - * at usBitOffset. */ - usByteOffset = ( USHORT )( ( usBitOffset ) / BITS_UCHAR ); - - /* How many bits precede our bits to set. */ - usNPreBits = ( USHORT )( usBitOffset - usByteOffset * BITS_UCHAR ); - - /* Move bit field into position over bits to set */ - usValue <<= usNPreBits; - - /* Prepare a mask for setting the new bits. */ - usMask = ( USHORT )( ( 1 << ( USHORT ) ucNBits ) - 1 ); - usMask <<= usBitOffset - usByteOffset * BITS_UCHAR; - - /* copy bits into temporary storage. */ - usWordBuf = ucByteBuf[usByteOffset]; - usWordBuf |= ucByteBuf[usByteOffset + 1] << BITS_UCHAR; - - /* Zero out bit field bits and then or value bits into them. */ - usWordBuf = ( USHORT )( ( usWordBuf & ( ~usMask ) ) | usValue ); - - /* move bits back into storage */ - ucByteBuf[usByteOffset] = ( UCHAR )( usWordBuf & 0xFF ); - ucByteBuf[usByteOffset + 1] = ( UCHAR )( usWordBuf >> BITS_UCHAR ); -} - -UCHAR -xMBUtilGetBits( UCHAR * ucByteBuf, USHORT usBitOffset, UCHAR ucNBits ) -{ - USHORT usWordBuf; - USHORT usMask; - USHORT usByteOffset; - USHORT usNPreBits; - - /* Calculate byte offset for first byte containing the bit values starting - * at usBitOffset. */ - usByteOffset = ( USHORT )( ( usBitOffset ) / BITS_UCHAR ); - - /* How many bits precede our bits to set. */ - usNPreBits = ( USHORT )( usBitOffset - usByteOffset * BITS_UCHAR ); - - /* Prepare a mask for setting the new bits. */ - usMask = ( USHORT )( ( 1 << ( USHORT ) ucNBits ) - 1 ); - - /* copy bits into temporary storage. */ - usWordBuf = ucByteBuf[usByteOffset]; - usWordBuf |= ucByteBuf[usByteOffset + 1] << BITS_UCHAR; - - /* throw away unneeded bits. */ - usWordBuf >>= usNPreBits; - - /* mask away bits above the requested bitfield. */ - usWordBuf &= usMask; - - return ( UCHAR ) usWordBuf; -} - -eMBException -prveMBError2Exception( eMBErrorCode eErrorCode ) -{ - eMBException eStatus; - - switch ( eErrorCode ) - { - case MB_ENOERR: - eStatus = MB_EX_NONE; - break; - - case MB_ENOREG: - eStatus = MB_EX_ILLEGAL_DATA_ADDRESS; - break; - - case MB_ETIMEDOUT: - eStatus = MB_EX_SLAVE_BUSY; - break; - - default: - eStatus = MB_EX_SLAVE_DEVICE_FAILURE; - break; - } - - return eStatus; -} diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/00db0b8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/00db0b8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/00db0b8a9571001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/00f4276d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/00f4276d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/00f4276d8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/206b29cb9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/206b29cb9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/206b29cb9071001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/20d6ee8cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/20d6ee8cb56e001a173da96cce181ab0 deleted file mode 100644 index 89e01b6a8..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/20d6ee8cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,62 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ -../Communication/PMR/MachineStatus/MachineState.pb-c.c \ -../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ -../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ -../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ -../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ -../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ -./Communication/PMR/MachineStatus/MachineState.pb-c.d \ -./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ -./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ -./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ -./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ -./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d - -OBJS += \ -./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ -./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ -./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ -./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ -./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ -./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ -./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ -"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ -"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ -"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ -"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ -"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ -"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ -"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ -"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ -"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ -"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ -"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ -"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ -"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ -"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ -"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ -"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ -"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ -"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/30eb62429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/30eb62429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/30eb62429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/606ff1e19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/606ff1e19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/606ff1e19a71001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/607f50509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/607f50509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/607f50509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/80444c519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/80444c519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/80444c519571001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/d09f7a398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/d09f7a398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/d09f7a398871001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/f043558eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/f043558eb56e001a173da96cce181ab0 deleted file mode 100644 index aee99823b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/f043558eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/USB_Communication/USBCDCD.c - -C_DEPS += \ -./Drivers/USB_Communication/USBCDCD.d - -OBJS += \ -./Drivers/USB_Communication/USBCDCD.obj - -OBJS__QUOTED += \ -"Drivers\USB_Communication\USBCDCD.obj" - -C_DEPS__QUOTED += \ -"Drivers\USB_Communication\USBCDCD.d" - -C_SRCS__QUOTED += \ -"../Drivers/USB_Communication/USBCDCD.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/2088efacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/2088efacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index d1cc8c142..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/2088efacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/309c3c18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/309c3c18b66e001a173da96cce181ab0 deleted file mode 100644 index 5d5798422..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/309c3c18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/400f1f439b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/400f1f439b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/400f1f439b71001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/4092c4998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/4092c4998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/4092c4998f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/508c6a429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/508c6a429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/508c6a429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/50fef68a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/50fef68a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/50fef68a9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/807e3f6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/807e3f6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/807e3f6e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/a027226d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/a027226d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/a027226d8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/b03c0318b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/b03c0318b66e001a173da96cce181ab0 deleted file mode 100644 index f770e24a4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/b03c0318b66e001a173da96cce181ab0 +++ /dev/null @@ -1,62 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ -../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ -../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ -../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ -../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ -../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ -../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c - -C_DEPS += \ -./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ -./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ -./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ -./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ -./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ -./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ -./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d - -OBJS += \ -./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ -./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ -./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ -./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ -./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ -./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ -./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ -"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ -"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ -"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ -"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ -"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ -"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ -"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ -"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ -"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ -"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ -"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ -"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ -"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ -"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ -"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ -"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ -"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ -"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/b05281ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/b05281ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/b05281ab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/d27619b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/d27619b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/d27619b58771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/f09791ca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/f09791ca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/f09791ca9071001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/f0e7abb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/f0e7abb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/f0e7abb48771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/0019dab38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/0019dab38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/0019dab38771001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/0098f7398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/0098f7398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/0098f7398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/00f490e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/00f490e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/00f490e78f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/11e387509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/11e387509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/11e387509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/20fa19e88f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/20fa19e88f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/20fa19e88f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/314302519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/314302519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/314302519571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/5077ac429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/5077ac429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/5077ac429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/61de708a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/61de708a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/61de708a9571001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/708c949a8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/708c949a8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/708c949a8f71001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/8082e56e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/8082e56e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/8082e56e8771001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/80a740cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/80a740cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/80a740cc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/9073efe19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/9073efe19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/9073efe19a71001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/c0300f439b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/c0300f439b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/c0300f439b71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/c058d1a99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/c058d1a99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/c058d1a99071001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/c0bd3cadb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/c0bd3cadb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index fef65b56e..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/c0bd3cadb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/e0bf9c429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/e0bf9c429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/e0bf9c429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/f04741e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/f04741e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5f/f04741e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/20a6c5f9076d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/20a6c5f9076d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/20a6c5f9076d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/215a68b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/215a68b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/215a68b58771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/4000f3ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/4000f3ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/4000f3ab9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/50ee7116b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/50ee7116b66e001a173da96cce181ab0 deleted file mode 100644 index b5f8c66dd..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/50ee7116b66e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/SWUpdate/FileSystem.c \ -../Common/SWUpdate/FirmwareUpgrade.c - -C_DEPS += \ -./Common/SWUpdate/FileSystem.d \ -./Common/SWUpdate/FirmwareUpgrade.d - -OBJS += \ -./Common/SWUpdate/FileSystem.obj \ -./Common/SWUpdate/FirmwareUpgrade.obj - -OBJS__QUOTED += \ -"Common\SWUpdate\FileSystem.obj" \ -"Common\SWUpdate\FirmwareUpgrade.obj" - -C_DEPS__QUOTED += \ -"Common\SWUpdate\FileSystem.d" \ -"Common\SWUpdate\FirmwareUpgrade.d" - -C_SRCS__QUOTED += \ -"../Common/SWUpdate/FileSystem.c" \ -"../Common/SWUpdate/FirmwareUpgrade.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/605cc7ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/605cc7ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/605cc7ab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/b09d6ce39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/b09d6ce39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/b09d6ce39a71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c039a2ca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c039a2ca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c039a2ca9071001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/e114919b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/e114919b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/e114919b8f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/f0247faa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/f0247faa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/f0247faa9071001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/f0b750cd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/f0b750cd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/f0b750cd9071001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/005608398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/005608398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/005608398871001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/603d98cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/603d98cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/603d98cc9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/619310398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/619310398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/619310398871001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/9067c3b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/9067c3b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/9067c3b48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/a02fb79a8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/a02fb79a8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/a02fb79a8f71001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/c06d08aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/c06d08aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index a1de9654a..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/c06d08aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/Software_CRC/sw_crc.c - -C_DEPS += \ -./Common/Software_CRC/sw_crc.d - -OBJS += \ -./Common/Software_CRC/sw_crc.obj - -OBJS__QUOTED += \ -"Common\Software_CRC\sw_crc.obj" - -C_DEPS__QUOTED += \ -"Common\Software_CRC\sw_crc.d" - -C_SRCS__QUOTED += \ -"../Common/Software_CRC/sw_crc.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/e009eaacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/e009eaacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index ef02d3fd2..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/e009eaacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/0039c4e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/0039c4e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/0039c4e78f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/008caa8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/008caa8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/008caa8a9571001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/00ffe98db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/00ffe98db56e001a173da96cce181ab0 deleted file mode 100644 index 716d5a2e0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/00ffe98db56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/10d26e429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/10d26e429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/10d26e429b71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/21d7668b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/21d7668b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/21d7668b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/31363cb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/31363cb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/31363cb48771001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/4098a6acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/4098a6acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 0d151c449..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/4098a6acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/508a9a8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/508a9a8eb56e001a173da96cce181ab0 deleted file mode 100644 index 80187ae88..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/508a9a8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,43 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/6009398eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/6009398eb56e001a173da96cce181ab0 deleted file mode 100644 index 3c6a8f895..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/6009398eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ -../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ -./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ -./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ -"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ -"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ -"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/a02d13e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/a02d13e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/a02d13e68f71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/b025b7429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/b025b7429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/b025b7429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/b0b7929a8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/b0b7929a8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/b0b7929a8f71001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/e07ee1b8f36c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/e07ee1b8f36c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/e07ee1b8f36c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/e0d81f38f56c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/e0d81f38f56c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/e0d81f38f56c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/10edd2b38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/10edd2b38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/10edd2b38771001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/114826b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/114826b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/114826b58771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/40ad648eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/40ad648eb56e001a173da96cce181ab0 deleted file mode 100644 index aadf08a8c..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/40ad648eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/Uart.d - -OBJS += \ -./Drivers/Uart_Comm/Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/70dafa4e9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/70dafa4e9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/70dafa4e9571001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/70deaa9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/70deaa9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/70deaa9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/710bd2509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/710bd2509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/710bd2509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/807409e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/807409e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/807409e78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/a143849b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/a143849b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/a143849b8f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/b026418b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/b026418b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/b026418b9571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/b0911729c36e001a17dd93e105fd0cb6 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/b0911729c36e001a17dd93e105fd0cb6 deleted file mode 100644 index 698168712..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/b0911729c36e001a17dd93e105fd0cb6 +++ /dev/null @@ -1,50 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -#ifndef _MB_RTU_H -#define _MB_RTU_H - -#ifdef __cplusplus -PR_BEGIN_EXTERN_C -#endif - eMBErrorCode eMBRTUInit( UCHAR slaveAddress, UCHAR ucPort, ULONG ulBaudRate, - eMBParity eParity ); -void eMBRTUStart( void ); -void eMBRTUStop( void ); -eMBErrorCode eMBRTUReceive( UCHAR * pucRcvAddress, UCHAR ** pucFrame, USHORT * pusLength ); -eMBErrorCode eMBRTUSend( UCHAR slaveAddress, const UCHAR * pucFrame, USHORT usLength ); -BOOL xMBRTUReceiveFSM( void ); -BOOL xMBRTUTransmitFSM( void ); -BOOL xMBRTUTimerT15Expired( void ); -BOOL xMBRTUTimerT35Expired( void ); - -#ifdef __cplusplus -PR_END_EXTERN_C -#endif -#endif diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/c041c08b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/c041c08b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/c041c08b9571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/c09f589b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/c09f589b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/c09f589b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/d0332daab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/d0332daab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index de1ba5fae..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/d0332daab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/d07619b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/d07619b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/d07619b58771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/e0dd97429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/e0dd97429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/e0dd97429b71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/e0e573509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/e0e573509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/e0e573509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/f0f346cd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/f0f346cd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/f0f346cd9071001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/10c41faaf46c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/10c41faaf46c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/10c41faaf46c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/70fa81e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/70fa81e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/70fa81e39a71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/71e4318b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/71e4318b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/71e4318b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/8093cab48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/8093cab48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/8093cab48771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/b07ff96e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/b07ff96e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/b07ff96e8771001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/f09bf38db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/f09bf38db56e001a173da96cce181ab0 deleted file mode 100644 index fa007a15a..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/f09bf38db56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/f1a0129c8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/f1a0129c8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/f1a0129c8f71001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/109d29cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/109d29cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/109d29cc9071001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/20d7668b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/20d7668b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/20d7668b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/4018a5e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/4018a5e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/4018a5e78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/40d0f68db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/40d0f68db56e001a173da96cce181ab0 deleted file mode 100644 index 74730e604..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/40d0f68db56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/50f682429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/50f682429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/50f682429b71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/600c938a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/600c938a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/600c938a9571001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/60f051419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/60f051419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/60f051419b71001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/a05bfe8bb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/a05bfe8bb56e001a173da96cce181ab0 deleted file mode 100644 index 3bfcbecc4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/a05bfe8bb56e001a173da96cce181ab0 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/Utilities/RFIDTagHandling.c \ -../Common/Utilities/Update.c \ -../Common/Utilities/Utils.c \ -../Common/Utilities/idle_task.c \ -../Common/Utilities/ustdlib.c - -C_DEPS += \ -./Common/Utilities/RFIDTagHandling.d \ -./Common/Utilities/Update.d \ -./Common/Utilities/Utils.d \ -./Common/Utilities/idle_task.d \ -./Common/Utilities/ustdlib.d - -OBJS += \ -./Common/Utilities/RFIDTagHandling.obj \ -./Common/Utilities/Update.obj \ -./Common/Utilities/Utils.obj \ -./Common/Utilities/idle_task.obj \ -./Common/Utilities/ustdlib.obj - -OBJS__QUOTED += \ -"Common\Utilities\RFIDTagHandling.obj" \ -"Common\Utilities\Update.obj" \ -"Common\Utilities\Utils.obj" \ -"Common\Utilities\idle_task.obj" \ -"Common\Utilities\ustdlib.obj" - -C_DEPS__QUOTED += \ -"Common\Utilities\RFIDTagHandling.d" \ -"Common\Utilities\Update.d" \ -"Common\Utilities\Utils.d" \ -"Common\Utilities\idle_task.d" \ -"Common\Utilities\ustdlib.d" - -C_SRCS__QUOTED += \ -"../Common/Utilities/RFIDTagHandling.c" \ -"../Common/Utilities/Update.c" \ -"../Common/Utilities/Utils.c" \ -"../Common/Utilities/idle_task.c" \ -"../Common/Utilities/ustdlib.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/d0bd04adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/d0bd04adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 9a06f1546..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/d0bd04adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/f08e3918b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/f08e3918b66e001a173da96cce181ab0 deleted file mode 100644 index 886b38a4e..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/f08e3918b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/1183a79b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/1183a79b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/1183a79b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/4024a3c6f16c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/4024a3c6f16c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/4024a3c6f16c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/607226e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/607226e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/607226e78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/8061ade19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/8061ade19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/8061ade19a71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/908947519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/908947519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/908947519571001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/a065de4c0c6d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/a065de4c0c6d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/a065de4c0c6d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/a0c2fb17b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/a0c2fb17b66e001a173da96cce181ab0 deleted file mode 100644 index 2599fb3d4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/a0c2fb17b66e001a173da96cce181ab0 +++ /dev/null @@ -1,722 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/a10803b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/a10803b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/a10803b58771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/d00062429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/d00062429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/d00062429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/f07ed7429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/f07ed7429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/f07ed7429b71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/f0ed86429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/f0ed86429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/f0ed86429b71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/302973cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/302973cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/302973cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/60226b6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/60226b6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/60226b6e8771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/71e39b398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/71e39b398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/71e39b398871001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/a13262509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/a13262509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/a13262509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/a1bdc39b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/a1bdc39b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/a1bdc39b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/b0c2cf1d146d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/b0c2cf1d146d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/b0c2cf1d146d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/c0887aa9076d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/c0887aa9076d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/c0887aa9076d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/e0b78b16b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/e0b78b16b66e001a173da96cce181ab0 deleted file mode 100644 index 66f3efdee..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/e0b78b16b66e001a173da96cce181ab0 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/f0df7be39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/f0df7be39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/f0df7be39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/00920b519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/00920b519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/00920b519571001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/306c8c429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/306c8c429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/306c8c429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/609caa6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/609caa6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/609caa6e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/b09a28e49a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/b09a28e49a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/b09a28e49a71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/d0da0e58f46c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/d0da0e58f46c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/d0da0e58f46c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/f0448aca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/f0448aca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/f0448aca9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/f0adfca9b06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/f0adfca9b06e001a18bbdaa1f718f3a2 deleted file mode 100644 index b5f8c66dd..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/f0adfca9b06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/SWUpdate/FileSystem.c \ -../Common/SWUpdate/FirmwareUpgrade.c - -C_DEPS += \ -./Common/SWUpdate/FileSystem.d \ -./Common/SWUpdate/FirmwareUpgrade.d - -OBJS += \ -./Common/SWUpdate/FileSystem.obj \ -./Common/SWUpdate/FirmwareUpgrade.obj - -OBJS__QUOTED += \ -"Common\SWUpdate\FileSystem.obj" \ -"Common\SWUpdate\FirmwareUpgrade.obj" - -C_DEPS__QUOTED += \ -"Common\SWUpdate\FileSystem.d" \ -"Common\SWUpdate\FirmwareUpgrade.d" - -C_SRCS__QUOTED += \ -"../Common/SWUpdate/FileSystem.c" \ -"../Common/SWUpdate/FirmwareUpgrade.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/00622e8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/00622e8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/00622e8b9571001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/205b7616b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/205b7616b66e001a173da96cce181ab0 deleted file mode 100644 index ed806ae47..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/205b7616b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/402037429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/402037429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/402037429b71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/40c993ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/40c993ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/40c993ab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/80971be39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/80971be39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/80971be39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/9040068b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/9040068b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/9040068b9571001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/a02c739b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/a02c739b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/a02c739b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/b04a63cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/b04a63cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/b04a63cc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/e06b6bcd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/e06b6bcd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/e06b6bcd9071001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/e0f7cc6b8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/e0f7cc6b8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/e0f7cc6b8771001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/0036d0ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/0036d0ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/0036d0ab9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/301dc4aa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/301dc4aa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/301dc4aa9071001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/602e348b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/602e348b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/602e348b9571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/60fb326e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/60fb326e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/60fb326e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/702bff6b8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/702bff6b8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/702bff6b8771001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/90268edb9a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/90268edb9a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..058148740 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/90268edb9a71001a1f70833eb9ed7011 @@ -0,0 +1,778 @@ + +#include +#include +#include +#include +#include "include.h" +#include "driverlib/gpio.h" + +#include "Communication/Connection.h" + +#include "Drivers/USB_Communication/USBCDCD.h" +#include "StateMachines/Initialization/PowerOffSequence.h" +#include "StateMachines/Initialization/PowerIdle.h" + +#include "drivers/Flash_Memory/FATFS/ff.h" +#include "drivers/Flash_Memory/FATFS/Control_File_System.h" +#include "drivers/Flash_ram/FlashProgram.h" +#include "drivers/adc_sampling/adc.h" +#include "drivers/Heater/TemperatureSensor.h" +#include "drivers/ADC_Sampling/adc.h" +#include "drivers/Flash_ram/MCU_E2Prom.h" +#include "Drivers/SSI_Comm/Dancer/Dancer.h" + +#include "Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/fan_click.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.h" +#include "drivers/Motors/Motor.h" +#include "drivers/FPGA/FPGA_SPI_Comm.h" +#include "Modules/IFS/ifs.h" +#include "Modules/IDS/ids_ex.h" +#include "Modules/Control/MillisecTask.h" +#include "modules/thread/thread_ex.h" +#include "modules/heaters/heaters_ex.h" +#include +#include +#include "Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.h" +#include "drivers/adc_sampling/adc.h" +#include +#include +#include +#include +#include +#include +#include + + +#include "Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.h" + + + +extern float NumberOfRotationPerPassage; // how many rotations per spool passage + +//#include "graphics_adapter.h" +extern uint8_t Input_Voltage; +extern uint8_t Test_Read_Buf[4]; + +extern uint8_t Head_Fan_PWM_Command[2]; +extern uint16_t Head_Fan_Tach[2]; + +void Stub_ProgressRequest(MessageContainer* requestContainer) +{ + MessageContainer responseContainer; + + ProgressRequest* request = progress_request__unpack(NULL, requestContainer->data.len, requestContainer->data.data); + + //writeLine("Progress Request..."); + + ProgressResponse response = PROGRESS_RESPONSE__INIT; + +// uint8_t high_byte = 0; +// uint8_t low_byte = 0; + + uint8_t addr = 0; + uint8_t port = 0; + uint8_t pin = 0; + uint8_t value= 0; + + if(request->amount == 0x3E9) // set TCA9555 u3 or u4 + { + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay & 0x8000) // bit15 select the chip address + { + addr = I2CExp2_ADDRESS; + } + else + { + addr = I2CExp1_ADDRESS; + } + + if (request->delay & 0x4000) // bit 14 select port 0 or 1 + { + port = D_TCA9555_PORT_1; + } + else + { + port = D_TCA9555_PORT_0; + } + + pin = ((request->delay & 0x0F00) >> 8); // 8..11 + + if (request->delay & 0x0001) + { + value = 1; + } + else + { + value = 0; + } + response.progress = Write_WHS_9555_io_value( addr, port, pin, value); + response.has_progress = true; + } + } + else + if(request->amount == 0x3E8) //&& (request->delay <= 0x0fff))// set WHS Blower speed 0x00-0xfff + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_enable_control_loop( request->delay & 0x1000);//disable control loop: 0=disable 1= enable + Trigger_SetWHSBlowerVoltage (request->delay & 0x0FFF); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E7) // set WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_Set_SetPoint_Q_value((double) request->delay); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E6) // get WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + response.progress = WHS_Get_Volt_Blower_Control(); + //response.progress = 0; + response.has_progress = true; + } + } + // WHS_Get_Volt_Blower_Control + else + if(request->amount == 0x3EA) + { + uint16_t tempu16 = 0; + double temp_double = 0.0; + uint8_t display_byte = 0; + uint16_t A2D_data = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + display_byte = ((request->delay & 0x3000)>>12); + switch (display_byte) + { + case 0: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x0000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(DrierAVERAGE); + break; + case 1: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x1000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(HeadCURRENT); + break; + case 2: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x2000); // + SetLeftDisplayView (DrierAVERAGE); + SetWriteDisplayView(DrierCURRENT); + break; + case 3: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x3000); // + SetLeftDisplayView (HeadCURRENT); + SetWriteDisplayView(DrierCURRENT); + break; + } + + A2D_data = (request->delay & 0x0FFF); + switch(A2D_data )// get A2D + { + case 0: + get_orf_1(&tempu16); + break; + case 1: + get_orf_2(&tempu16); + break; + case 2: + get_orf_3(&tempu16); + break; + case 3: + get_vlev1(&tempu16); + break; + case 4: + get_vlev2(&tempu16); + break; + case 5: + get_gas_out(&tempu16); + break; + case 6: + get_cur_fan(&tempu16); + break; + case 7: + get_cur_vlv1(&tempu16); + break; + case 8: + tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + case 10: + temp_double = get_Q(HEAD_FLOW_METER); + break; + case 12: + temp_double = get_Q(DRIER_FLOW_METER); + break; + case 20: + temp_double = get_average_Q(HEAD_FLOW_METER); //HEAD + break; + case 22: + temp_double = get_average_Q(DRIER_FLOW_METER); //Drier + break; + + case 11: + //get_orf_2(&tempu16); + break; + case 13: + //get_vlev1(&tempu16); + break; + case 14: + //get_vlev2(&tempu16); + break; + case 15: + //get_gas_out(&tempu16); + break; + case 16: + //get_cur_fan(&tempu16); + break; + case 17: + //get_cur_vlv1(&tempu16); + break; + case 18: + //tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + default : + tempu16 = 0x500; //get_cur_vlv2(&tempu16); + break; + } + } + if ((request->delay)<10) + { + response.progress = (double)tempu16; + } + else + { + response.progress = temp_double; + } + response.has_progress = true; + } + else // + if(request->amount == 0x3EB) + { + uint16_t tempu16 = 0; + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay <= 0x03FF) + { + Trigger_WHS_Set_RDAC(request->delay); // 0 -> 0x03FF + } + else + { + //Trigger_WHS_set_Rheostat_to_CLEAN_AIR(); + } + get_gas_out(&tempu16); + } + response.progress = (double)tempu16; + response.has_progress = true; + } + else + if((request->amount == 0xDE) && (request->delay < 8) && (request->delay >= 0)) // read dispenser type + LS status + { + response.progress = ((Dispenser_struct[request->delay].Type) << 8) + Dispenser_struct[request->delay].Status; + response.has_progress = true; + } + else + if(request->amount == 0xAD) //undef AUTO_HOME_DISPENSERS + { + if ((request->delay >=AutoHoming_off )&&(request->delay<=AutoHoming_JobEnd_PowerOn_off )) + IDS_Dispenser_SetAutoHoming_Config(request->delay); + response.progress = 01; + response.has_progress = true; + } + else + if(request->amount == 0xAD1) //Set_Check_Pressure_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Check_Pressure_Bypass"); + response.progress = Set_Check_Pressure_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD2) //Set_Thread_Rockers_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Thread_Rockers_Bypass"); + response.progress = Set_Thread_Rockers_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD3) //Set_Auto_Shutdown_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Shutdown_Bypass"); + response.progress = Set_Auto_Shutdown_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD4) //Set_Auto_Idle_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Idle_Bypass"); + response.progress = Set_Auto_Idle_Bypass(request->delay); + response.has_progress = true; + } + else + if((request->amount == 0x01) && ((request->delay &0x010000) == 0x010000)) //change mode powerset01 + { + response.progress = Power_Step_01_Mode(((request->delay &0x00FF00)>>8), request->delay &0x0000FF); + response.has_progress = true; + } + else + if((request->amount == 0xAB) && (request->delay == 0xAB)) //Get pressure with flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(true); + response.has_progress = true; + + } + else + if((request->amount == 0xAB) && (request->delay == 0x0)) //measured sensor voltage without flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(false); + response.has_progress = true; + + } + else + if((request->amount == 0xAC) && (request->delay == 0xAC)) //VAC + { + response.progress = ReadVAC(); + response.has_progress = true; + + } + else + if(request->amount == 0x0EAD) //Head Card I/O + { + uint8_t Read_Buf[1] = {0}; + uint8_t Write_Buf[2] = {0,0}; + uint8_t Script_Slave_Add = request -> delay >> 16;//Slave address 0x40 / 0x42 / 0x44 / 0x46 + Write_Buf[0] = (request -> delay & 0x00FF00) >> 8;//read/write low/high + /* + ------------------ + | Byte | WR | RD | + ------------------ + | Low | 02 | 00 | + | High | 03 | 01 | + ------------------ + */ + Write_Buf[1] = request -> delay & 0x0000FF;//data to write + + response.has_progress = false; + + Select_Main_Head_Mux_Channel(); + + if(Write_Buf[0] == 0)//Read + { + //Head_Read_IO_Reg(Script_Slave_Add, LOW); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46) + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + + if(Write_Buf[0] == 1)//Read + { + //Head_Read_IO_Reg(Script_Slave_Add, HIGH); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46)//LS + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + if(Write_Buf[0] == 2)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + Head_I2C_EXP2_0x42.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); + } + + //Head_Write_IO_Reg(Script_Slave_Add, LOW); + } + if(Write_Buf[0] == 3)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[1] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + //Head_I2C_EXP2_0x42.uchar[1] = Write_Buf[1]; + Head_I2C_EXP2_0x42.bits.OUTPUT_MAG_DIR = (Write_Buf[1] & 0x01);//control only the magnet + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP3_0x44.uchar[1] = (Write_Buf[1] & 0x0C); + } + //Head_Write_IO_Reg(Script_Slave_Add, HIGH); + } + } + else + if(request->amount == 0xFEAD) //functions Head Card I/O + { + Select_Main_Head_Mux_Channel(); + + if((request -> delay & 0xFFF000) == 0xCAF000)//Actuator + { + //HeadCard_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), /*(bool)((request -> delay & 0x10)>>4), */(bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + Trigger_Head_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), (bool)((request -> delay & 0x10)>>4), (bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + //response.progress = HeadCard_Actuators_Status((ACTUATORS)((request -> delay) & 0x100)>>8); + response.has_progress = true; + } + else + if((request -> delay & 0xFF0000) == 0xCA0000)//control all heaters + { + if(request -> delay & 0x01) + { + Disconnect_Mixer_and_12_Heaters_Latch(); + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, TRUE); + Connect_Mixer_and_12_Heaters_Latch(); + } + else + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, FALSE); + } + else + if(request -> delay == 0x0)//return head type + { + response.progress = Head_Type; + response.has_progress = true; + } + + } + else + if((request->amount == 0xFAC0) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + //Head_Fan_PWM_Command[0] = (request->delay & 0xFF) ; + //Test_Head_fan_Click(); + + Trigger_Head_Fan_Control(HEAD_FAN_RIGHT, request->delay & 0xFF); + Task_sleep(2000); + + //response.progress = Fan_Click_Info.Product_ID; + response.progress = Head_Fan_Tach[0]; + response.has_progress = true; + + } + else + if((request->amount == 0xFAC1) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + Trigger_Head_Fan_Control(HEAD_FAN_LEFT, request->delay & 0xFF); + Task_sleep(2000); + response.progress = Head_Fan_Tach[1]; + response.has_progress = true; + } + else + if ((request->amount & 0x0000FFF0) == 0xFAC0) //WHS Fan control + { + uint16_t fan_tacho = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + Trigger_SetWHSFanSpeed(((request->amount & 0x0000000F)-1) , request->delay & 0x000000FF); + Task_sleep(2000); + fan_tacho = WHS_Get_fan_tach( (request->amount & 0x0000000F)-1); + } + response.progress = fan_tacho; + response.has_progress = true; + } + else + if((request->amount == 0x0A) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Initial_Offset_A[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0xB) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Slope_B[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0x5C4E) && (request->delay == 0x5C4E)) //Screw Home Pos dir + { + test_Home_Pos(); + } + else + if((request->amount == 0x100) && (request->delay == 0x100)) //head card PT100 + { + Test_HeadCard_PT100(TEMP_SENSE_ANALOG_DYEINGH_TEMP1); + //response.progress = (double)Test_Read_Buf[0]; + response.progress = (double)Data_ADC_Head; + response.has_progress = true; + } + else + if((request->amount == 0x0D) && (request->delay == 0xEE)) //Dispenser EEprom + { + test_disp_eeprom(0x01,0xA0); + response.progress = OK; + response.has_progress = true; + } + else + if((request->amount == 0xCF) && (request->delay == 0xCF)) //Create File System on the Drive + { +#ifdef WATCHDOG + ROM_WatchdogResetDisable(WATCHDOG0_BASE); + uint32_t timeout = 0xFFFFFFFFU; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + FRESULT iFResult = Init_Flash_File_System(true); + if(iFResult != FR_OK) + { + LOG_ERROR (iFResult, "Error during init Flash File System"); + assert(iFResult); + } +#ifdef WATCHDOG + ROM_WatchdogResetEnable(WATCHDOG0_BASE); + timeout = 120000000*3; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + } + else + if((request->amount == 0x0C) && (request->delay == 0x0C)) //Get Gas Sensor + { + response.progress = (double)Calculate_Gas_Power_Consumption(); + response.has_progress = true; + + } + else + if((request->amount == 0xDD) && (request->delay == 0xDD)) //Read Input Voltage + { + LOG_ERROR(request->delay,"CheckAcInputVoltage"); + CheckAcInputVoltage(); + + response.progress = (double)Input_Voltage; + response.has_progress = true; + } + else + if((request->amount == 0x0CE) && (request->delay == 0x0CE)) //Get Gas Sensor + { + LOG_ERROR(request->delay,"FlashInit"); + FlashInit(); + response.progress = (double)OK; + response.has_progress = true; + + } + else + if(request->amount == 0x0CC) //Cartridge Validation Response Demo + { + LOG_ERROR(request->delay,"ResponseDemo"); + ResponseDemo(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE0) //fast refresh for pressure + { + LOG_ERROR(request->delay,"setRapidPressureRead"); + setRapidPressureRead(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Starting Dispenser PID"); + IDS_Start_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE2) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Stoping Dispenser PID"); + IDS_Stop_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xB1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Set loading arm center"); + Read_Dryer_ENC_Position(); + Task_sleep(500); + Read_Dryer_ENC_Position(); + Task_sleep(500); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CENTER,Read_Dryer_ENC_Position(0,0)); + response.has_progress = true; + } + else + if(request->amount == 0xB2) //Set loading arm cycles + { + LOG_ERROR(request->delay,"Set loading arm cycles"); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CYCLES,request->delay); + response.has_progress = true; + } + + else + if(request->amount == 0xB3) //fast refresh for pressure + { + LOG_ERROR(request->amount,"keep alive test"); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB4) //IDS_Dispenser_Content_Init + { + LOG_ERROR(request->amount,"IDS_Dispenser_Content_Init"); + IDS_Dispenser_Content_Init(); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB5) //fast refresh for pressure + { + if (request->delay<=100) + { + LOG_ERROR(request->delay,"set stub_heating_limit"); + stub_heating_limit = request->delay; + } + response.progress = request->delay; + response.has_progress = true; + + } +#ifdef VAC_TEST + else + if(request->amount == 0xB6) //fast refresh for pressure + { + LOG_ERROR(request->delay,"set vac read test"); + VAC_Test = (double)request->delay; + response.progress = request->delay; + response.has_progress = true; + + } +#endif + + else + if(request->amount == 0xC3) //suspend I2C task + { + if (request->delay == 0) + { + LOG_ERROR(request->delay,"Suspend I2C"); + PowerOffHeatersOff(); + Task_sleep(1000); + Task_setPri (I2C_Task_Handle,-1); + } + else + { + LOG_ERROR(request->delay,"Resume"); + Task_setPri (I2C_Task_Handle,8); + } + response.progress = request->delay; + response.has_progress = true; + + } + else + if((request->amount == 0xDF) && (request->delay == 0xDF)) //Power off + { + PowerOffInit(); + } + else + if(request->amount == 0xF1) + { + LOG_ERROR(request->delay,"NumberOfRotationPerPassage"); + NumberOfRotationPerPassage = (float)(request->delay)/1000; + } + else + { + response.has_progress = true; + int i = 0; + for (i = 0; i < request->amount; i++) + { + response.progress = i; + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, false, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + + int co = 0; + for (co = 0; co < request->delay; co++) + { + __delay_cycles(1000000); + } + } + } + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, true, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + //writeLine("Progress Completed!"); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + return; + +} diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/d0f6273a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/d0f6273a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/d0f6273a8871001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/00bb2f9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/00bb2f9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/00bb2f9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/00d1f018b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/00d1f018b66e001a173da96cce181ab0 deleted file mode 100644 index 98cd1f3ec..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/00d1f018b66e001a173da96cce181ab0 +++ /dev/null @@ -1,56 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/Thread/ThreadLoad.c \ -../Modules/Thread/Thread_BIT.c \ -../Modules/Thread/Thread_Winder.c \ -../Modules/Thread/Thread_init.c \ -../Modules/Thread/Thread_maint.c \ -../Modules/Thread/Thread_print.c - -C_DEPS += \ -./Modules/Thread/ThreadLoad.d \ -./Modules/Thread/Thread_BIT.d \ -./Modules/Thread/Thread_Winder.d \ -./Modules/Thread/Thread_init.d \ -./Modules/Thread/Thread_maint.d \ -./Modules/Thread/Thread_print.d - -OBJS += \ -./Modules/Thread/ThreadLoad.obj \ -./Modules/Thread/Thread_BIT.obj \ -./Modules/Thread/Thread_Winder.obj \ -./Modules/Thread/Thread_init.obj \ -./Modules/Thread/Thread_maint.obj \ -./Modules/Thread/Thread_print.obj - -OBJS__QUOTED += \ -"Modules\Thread\ThreadLoad.obj" \ -"Modules\Thread\Thread_BIT.obj" \ -"Modules\Thread\Thread_Winder.obj" \ -"Modules\Thread\Thread_init.obj" \ -"Modules\Thread\Thread_maint.obj" \ -"Modules\Thread\Thread_print.obj" - -C_DEPS__QUOTED += \ -"Modules\Thread\ThreadLoad.d" \ -"Modules\Thread\Thread_BIT.d" \ -"Modules\Thread\Thread_Winder.d" \ -"Modules\Thread\Thread_init.d" \ -"Modules\Thread\Thread_maint.d" \ -"Modules\Thread\Thread_print.d" - -C_SRCS__QUOTED += \ -"../Modules/Thread/ThreadLoad.c" \ -"../Modules/Thread/Thread_BIT.c" \ -"../Modules/Thread/Thread_Winder.c" \ -"../Modules/Thread/Thread_init.c" \ -"../Modules/Thread/Thread_maint.c" \ -"../Modules/Thread/Thread_print.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/110529519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/110529519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/110529519571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/90343d6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/90343d6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/90343d6e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/913e259c8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/913e259c8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/913e259c8f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/b036c3388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/b036c3388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/b036c3388871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/e0294f9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/e0294f9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/e0294f9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/f092cd998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/f092cd998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/f092cd998f71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/007c5029c36e001a17dd93e105fd0cb6 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/007c5029c36e001a17dd93e105fd0cb6 deleted file mode 100644 index e2d14cf05..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/007c5029c36e001a17dd93e105fd0cb6 +++ /dev/null @@ -1,82 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -#ifndef _MB_PROTO_H -#define _MB_PROTO_H - -#ifdef __cplusplus -PR_BEGIN_EXTERN_C -#endif -/* ----------------------- Defines ------------------------------------------*/ -#define MB_ADDRESS_BROADCAST ( 0 ) /*! Modbus broadcast address. */ -#define MB_ADDRESS_MIN ( 1 ) /*! Smallest possible slave address. */ -#define MB_ADDRESS_MAX ( 247 ) /*! Biggest possible slave address. */ -#define MB_FUNC_NONE ( 0 ) -#define MB_FUNC_READ_COILS ( 1 ) -#define MB_FUNC_READ_DISCRETE_INPUTS ( 2 ) -#define MB_FUNC_WRITE_SINGLE_COIL ( 5 ) -#define MB_FUNC_WRITE_MULTIPLE_COILS ( 15 ) -#define MB_FUNC_READ_HOLDING_REGISTER ( 3 ) -#define MB_FUNC_READ_INPUT_REGISTER ( 4 ) -#define MB_FUNC_WRITE_REGISTER ( 6 ) -#define MB_FUNC_WRITE_MULTIPLE_REGISTERS ( 16 ) -#define MB_FUNC_READWRITE_MULTIPLE_REGISTERS ( 23 ) -#define MB_FUNC_DIAG_READ_EXCEPTION ( 7 ) -#define MB_FUNC_DIAG_DIAGNOSTIC ( 8 ) -#define MB_FUNC_DIAG_GET_COM_EVENT_CNT ( 11 ) -#define MB_FUNC_DIAG_GET_COM_EVENT_LOG ( 12 ) -#define MB_FUNC_OTHER_REPORT_SLAVEID ( 17 ) -#define MB_FUNC_ERROR ( 128 ) -/* ----------------------- Type definitions ---------------------------------*/ - typedef enum -{ - MB_EX_NONE = 0x00, - MB_EX_ILLEGAL_FUNCTION = 0x01, - MB_EX_ILLEGAL_DATA_ADDRESS = 0x02, - MB_EX_ILLEGAL_DATA_VALUE = 0x03, - MB_EX_SLAVE_DEVICE_FAILURE = 0x04, - MB_EX_ACKNOWLEDGE = 0x05, - MB_EX_SLAVE_BUSY = 0x06, - MB_EX_MEMORY_PARITY_ERROR = 0x08, - MB_EX_GATEWAY_PATH_FAILED = 0x0A, - MB_EX_GATEWAY_TGT_FAILED = 0x0B -} eMBException; - -typedef eMBException( *pxMBFunctionHandler ) ( UCHAR * pucFrame, USHORT * pusLength ); - -typedef struct -{ - UCHAR ucFunctionCode; - pxMBFunctionHandler pxHandler; -} xMBFunctionHandler; - -#ifdef __cplusplus -PR_END_EXTERN_C -#endif -#endif diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/306869acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/306869acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 43102a930..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/306869acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c - -C_DEPS += \ -./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d - -OBJS += \ -./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj - -OBJS__QUOTED += \ -"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" - -C_DEPS__QUOTED += \ -"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" - -C_SRCS__QUOTED += \ -"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/404221e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/404221e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/404221e78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/40f00ae68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/40f00ae68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/40f00ae68f71001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/60b135b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/60b135b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/60b135b58771001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/60f1a7398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/60f1a7398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/60f1a7398871001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/70b91f3a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/70b91f3a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/70b91f3a8871001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/a05a4b080d6d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/a05a4b080d6d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/a05a4b080d6d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/b01f589a8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/b01f589a8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/b01f589a8f71001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/c137ed398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/c137ed398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/c137ed398871001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/d03cdbacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/d03cdbacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index a52b2440b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/d03cdbacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ -../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ -./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ -./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ -"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ -"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ -"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/d0a9d2b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/d0a9d2b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/d0a9d2b48771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/e0e22e429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/e0e22e429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/e0e22e429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/f07a826e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/f07a826e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/f07a826e8771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/f0d2edb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/f0d2edb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/f0d2edb48771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/30065518b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/30065518b66e001a173da96cce181ab0 deleted file mode 100644 index d8f8fc711..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/30065518b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/309cc8cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/309cc8cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/309cc8cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/60f98f509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/60f98f509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/60f98f509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/80f35dcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/80f35dcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/80f35dcc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/90b0189b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/90b0189b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/90b0189b8f71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/a08f4218b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/a08f4218b66e001a173da96cce181ab0 deleted file mode 100644 index c2aaaeb6f..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/a08f4218b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/c05cf08cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/c05cf08cb56e001a173da96cce181ab0 deleted file mode 100644 index 5880cb66d..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/c05cf08cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,57 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/00244d509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/00244d509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/00244d509571001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/0037d5b38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/0037d5b38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/0037d5b38771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/20d5fd8db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/20d5fd8db56e001a173da96cce181ab0 deleted file mode 100644 index d8f8fc711..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/20d5fd8db56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/4042cc398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/4042cc398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/4042cc398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/405a5d8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/405a5d8eb56e001a173da96cce181ab0 deleted file mode 100644 index e69de29bb..000000000 diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/501789cb9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/501789cb9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/501789cb9071001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/50a0fecc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/50a0fecc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/50a0fecc9071001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/b0dcde509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/b0dcde509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/b0dcde509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/c0d036aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/c0d036aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index a15ee2b82..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/c0d036aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,57 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/e02c03ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/e02c03ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/e02c03ac9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/e08cf58cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/e08cf58cb56e001a173da96cce181ab0 deleted file mode 100644 index 2fb0a39e1..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/e08cf58cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ -../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ -../Communication/PMR/Power/PowerDownState.pb-c.c \ -../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ -../Communication/PMR/Power/StartPowerDownResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ -./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ -./Communication/PMR/Power/PowerDownState.pb-c.d \ -./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ -./Communication/PMR/Power/StartPowerDownResponse.pb-c.d - -OBJS += \ -./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ -./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ -./Communication/PMR/Power/PowerDownState.pb-c.obj \ -./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ -./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ -"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ -"Communication\PMR\Power\PowerDownState.pb-c.obj" \ -"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ -"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ -"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ -"Communication\PMR\Power\PowerDownState.pb-c.d" \ -"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ -"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ -"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ -"../Communication/PMR/Power/PowerDownState.pb-c.c" \ -"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ -"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/11a7298b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/11a7298b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/11a7298b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/300d9e9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/300d9e9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/300d9e9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/504ce08bb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/504ce08bb56e001a173da96cce181ab0 deleted file mode 100644 index 71dcae149..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/504ce08bb56e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/81dfca509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/81dfca509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/81dfca509571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/e00dd6e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/e00dd6e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/e00dd6e39a71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/102a5e6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/102a5e6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/102a5e6e8771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/109a5d82c06e001a17dd93e105fd0cb6 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/109a5d82c06e001a17dd93e105fd0cb6 deleted file mode 100644 index 1dc10e5c1..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/109a5d82c06e001a17dd93e105fd0cb6 +++ /dev/null @@ -1,133 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -/* ----------------------- System includes ----------------------------------*/ -#include "stdlib.h" -#include "string.h" - -/* ----------------------- Platform includes --------------------------------*/ -#include "port.h" - -/* ----------------------- Modbus includes ----------------------------------*/ -#include "mb.h" -#include "mbframe.h" -#include "mbproto.h" -#include "mbconfig.h" - -/* ----------------------- Defines ------------------------------------------*/ -#define MB_PDU_FUNC_READ_ADDR_OFF ( MB_PDU_DATA_OFF ) -#define MB_PDU_FUNC_READ_DISCCNT_OFF ( MB_PDU_DATA_OFF + 2 ) -#define MB_PDU_FUNC_READ_SIZE ( 4 ) -#define MB_PDU_FUNC_READ_DISCCNT_MAX ( 0x07D0 ) - -/* ----------------------- Static functions ---------------------------------*/ -eMBException prveMBError2Exception( eMBErrorCode eErrorCode ); - -/* ----------------------- Start implementation -----------------------------*/ - -#if MB_FUNC_READ_COILS_ENABLED > 0 - -eMBException -eMBFuncReadDiscreteInputs( UCHAR * pucFrame, USHORT * usLen ) -{ - USHORT usRegAddress; - USHORT usDiscreteCnt; - UCHAR ucNBytes; - UCHAR *pucFrameCur; - - eMBException eStatus = MB_EX_NONE; - eMBErrorCode eRegStatus; - - if( *usLen == ( MB_PDU_FUNC_READ_SIZE + MB_PDU_SIZE_MIN ) ) - { - usRegAddress = ( USHORT )( pucFrame[MB_PDU_FUNC_READ_ADDR_OFF] << 8 ); - usRegAddress |= ( USHORT )( pucFrame[MB_PDU_FUNC_READ_ADDR_OFF + 1] ); - usRegAddress++; - - usDiscreteCnt = ( USHORT )( pucFrame[MB_PDU_FUNC_READ_DISCCNT_OFF] << 8 ); - usDiscreteCnt |= ( USHORT )( pucFrame[MB_PDU_FUNC_READ_DISCCNT_OFF + 1] ); - - /* Check if the number of registers to read is valid. If not - * return Modbus illegal data value exception. - */ - if( ( usDiscreteCnt >= 1 ) && - ( usDiscreteCnt < MB_PDU_FUNC_READ_DISCCNT_MAX ) ) - { - /* Set the current PDU data pointer to the beginning. */ - pucFrameCur = &pucFrame[MB_PDU_FUNC_OFF]; - *usLen = MB_PDU_FUNC_OFF; - - /* First byte contains the function code. */ - *pucFrameCur++ = MB_FUNC_READ_DISCRETE_INPUTS; - *usLen += 1; - - /* Test if the quantity of coils is a multiple of 8. If not last - * byte is only partially field with unused coils set to zero. */ - if( ( usDiscreteCnt & 0x0007 ) != 0 ) - { - ucNBytes = ( UCHAR ) ( usDiscreteCnt / 8 + 1 ); - } - else - { - ucNBytes = ( UCHAR ) ( usDiscreteCnt / 8 ); - } - *pucFrameCur++ = ucNBytes; - *usLen += 1; - - eRegStatus = - eMBRegDiscreteCB( pucFrameCur, usRegAddress, usDiscreteCnt ); - - /* If an error occured convert it into a Modbus exception. */ - if( eRegStatus != MB_ENOERR ) - { - eStatus = prveMBError2Exception( eRegStatus ); - } - else - { - /* The response contains the function code, the starting address - * and the quantity of registers. We reuse the old values in the - * buffer because they are still valid. */ - *usLen += ucNBytes;; - } - } - else - { - eStatus = MB_EX_ILLEGAL_DATA_VALUE; - } - } - else - { - /* Can't be a valid read coil register request because the length - * is incorrect. */ - eStatus = MB_EX_ILLEGAL_DATA_VALUE; - } - return eStatus; -} - -#endif diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/202070e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/202070e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/202070e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/30afef8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/30afef8eb56e001a173da96cce181ab0 deleted file mode 100644 index cb2c2ad65..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/30afef8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../StateMachines/Initialization/InitSequence.c \ -../StateMachines/Initialization/PowerIdle.c \ -../StateMachines/Initialization/PowerOffSequence.c - -C_DEPS += \ -./StateMachines/Initialization/InitSequence.d \ -./StateMachines/Initialization/PowerIdle.d \ -./StateMachines/Initialization/PowerOffSequence.d - -OBJS += \ -./StateMachines/Initialization/InitSequence.obj \ -./StateMachines/Initialization/PowerIdle.obj \ -./StateMachines/Initialization/PowerOffSequence.obj - -OBJS__QUOTED += \ -"StateMachines\Initialization\InitSequence.obj" \ -"StateMachines\Initialization\PowerIdle.obj" \ -"StateMachines\Initialization\PowerOffSequence.obj" - -C_DEPS__QUOTED += \ -"StateMachines\Initialization\InitSequence.d" \ -"StateMachines\Initialization\PowerIdle.d" \ -"StateMachines\Initialization\PowerOffSequence.d" - -C_SRCS__QUOTED += \ -"../StateMachines/Initialization/InitSequence.c" \ -"../StateMachines/Initialization/PowerIdle.c" \ -"../StateMachines/Initialization/PowerOffSequence.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/31fdd0398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/31fdd0398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/31fdd0398871001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/407cfeacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/407cfeacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 46d9242fd..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/407cfeacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/80ebf618b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/80ebf618b66e001a173da96cce181ab0 deleted file mode 100644 index 9389df8e2..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/80ebf618b66e001a173da96cce181ab0 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/Waste/Waste_BIT.c \ -../Modules/Waste/Waste_init.c \ -../Modules/Waste/Waste_maint.c \ -../Modules/Waste/Waste_print.c \ -../Modules/Waste/newWHS_init.c - -C_DEPS += \ -./Modules/Waste/Waste_BIT.d \ -./Modules/Waste/Waste_init.d \ -./Modules/Waste/Waste_maint.d \ -./Modules/Waste/Waste_print.d \ -./Modules/Waste/newWHS_init.d - -OBJS += \ -./Modules/Waste/Waste_BIT.obj \ -./Modules/Waste/Waste_init.obj \ -./Modules/Waste/Waste_maint.obj \ -./Modules/Waste/Waste_print.obj \ -./Modules/Waste/newWHS_init.obj - -OBJS__QUOTED += \ -"Modules\Waste\Waste_BIT.obj" \ -"Modules\Waste\Waste_init.obj" \ -"Modules\Waste\Waste_maint.obj" \ -"Modules\Waste\Waste_print.obj" \ -"Modules\Waste\newWHS_init.obj" - -C_DEPS__QUOTED += \ -"Modules\Waste\Waste_BIT.d" \ -"Modules\Waste\Waste_init.d" \ -"Modules\Waste\Waste_maint.d" \ -"Modules\Waste\Waste_print.d" \ -"Modules\Waste\newWHS_init.d" - -C_SRCS__QUOTED += \ -"../Modules/Waste/Waste_BIT.c" \ -"../Modules/Waste/Waste_init.c" \ -"../Modules/Waste/Waste_maint.c" \ -"../Modules/Waste/Waste_print.c" \ -"../Modules/Waste/newWHS_init.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c0c6ea398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c0c6ea398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c0c6ea398871001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/d0db45e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/d0db45e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/d0db45e39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/006857e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/006857e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/006857e39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/00a8ba4f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/00a8ba4f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/00a8ba4f9571001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/01f4276d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/01f4276d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/01f4276d8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/103bdfe78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/103bdfe78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/103bdfe78f71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/109e9ce58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/109e9ce58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/109e9ce58f71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/10fd25a3f36c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/10fd25a3f36c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/10fd25a3f36c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/4066f5998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/4066f5998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/4066f5998f71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/40930f8fb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/40930f8fb56e001a173da96cce181ab0 deleted file mode 100644 index 73ae9b00b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/40930f8fb56e001a173da96cce181ab0 +++ /dev/null @@ -1,847 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS - -GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" -GEN_CMDS__FLAG := -l"configPkg/linker.cmd" - -ORDERED_OBJS += \ -"./Main.obj" \ -"./delay.obj" \ -"./Common/SWUpdate/FileSystem.obj" \ -"./Common/SWUpdate/FirmwareUpgrade.obj" \ -"./Common/SW_Info/SW_Info.obj" \ -"./Common/Software_CRC/sw_crc.obj" \ -"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ -"./Common/Sys_PinOut_Config/Pin.obj" \ -"./Common/Sys_PinOut_Config/Pin_config.obj" \ -"./Common/Utilities/RFIDTagHandling.obj" \ -"./Common/Utilities/Update.obj" \ -"./Common/Utilities/Utils.obj" \ -"./Common/Utilities/idle_task.obj" \ -"./Common/Utilities/ustdlib.obj" \ -"./Common/protobuf-c/protobuf-c.obj" \ -"./Common/report/distributor.obj" \ -"./Common/report/filter.obj" \ -"./Common/report/reportInit.obj" \ -"./Communication/CommunicationTask.obj" \ -"./Communication/Connection.obj" \ -"./Communication/Container.obj" \ -"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ -"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ -"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ -"./Communication/PMR/Common/MessageType.pb-c.obj" \ -"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ -"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ -"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ -"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ -"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ -"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ -"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ -"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ -"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ -"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ -"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ -"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ -"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ -"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ -"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ -"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ -"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ -"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ -"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ -"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ -"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ -"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ -"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ -"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ -"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ -"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ -"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ -"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ -"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ -"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ -"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ -"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ -"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ -"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ -"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ -"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ -"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ -"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ -"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ -"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ -"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ -"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ -"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ -"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ -"./Communication/PMR/IO/FileInfo.pb-c.obj" \ -"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ -"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ -"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ -"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ -"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ -"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ -"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ -"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ -"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ -"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ -"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ -"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ -"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ -"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ -"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ -"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ -"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ -"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ -"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ -"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ -"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ -"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ -"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ -"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ -"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ -"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ -"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ -"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ -"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ -"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ -"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ -"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ -"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ -"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ -"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ -"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ -"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ -"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ -"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ -"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ -"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ -"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ -"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ -"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ -"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ -"./Drivers/ADC_Sampling/ADC.obj" \ -"./Drivers/ADC_Sampling/ADC_VAC.obj" \ -"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ -"./Drivers/FPGA/FPGA.obj" \ -"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ -"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ -"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ -"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ -"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ -"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ -"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ -"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ -"./Drivers/FPGA/Motors_Driver/L6470.obj" \ -"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ -"./Drivers/Flash_Memory/FATFS/cc932.obj" \ -"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ -"./Drivers/Flash_Memory/FATFS/ff.obj" \ -"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ -"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ -"./Drivers/Flash_Memory/Flash_Memory.obj" \ -"./Drivers/Heater/ADS1220.obj" \ -"./Drivers/Heater/Heater.obj" \ -"./Drivers/Heater/TemperatureSensor.obj" \ -"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ -"./Drivers/I2C_Communication/DAC/Blower.obj" \ -"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ -"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ -"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ -"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ -"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ -"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ -"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ -"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ -"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ -"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ -"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ -"./Drivers/I2C_Communication/I2C.obj" \ -"./Drivers/I2C_Communication/I2C_Comm.obj" \ -"./Drivers/I2C_Communication/I2C_FIFO.obj" \ -"./Drivers/I2C_Communication/I2C_Task.obj" \ -"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ -"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ -"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ -"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ -"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ -"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ -"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ -"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ -"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ -"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ -"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ -"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ -"./Drivers/Motors/Motor.obj" \ -"./Drivers/Motors/MotorActions.obj" \ -"./Drivers/On_Chip_Flash/Flashstore.obj" \ -"./Drivers/SPI/SPI_Comm.obj" \ -"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ -"./Drivers/SSI_Comm/SSI_Comm.obj" \ -"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ -"./Drivers/USB_Communication/USBCDCD.obj" \ -"./Drivers/Uart_Comm/Uart.obj" \ -"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ -"./Drivers/Valves/Valve.obj" \ -"./Drivers/flash_ram/FlashProgram.obj" \ -"./Drivers/flash_ram/MCU_E2Prom.obj" \ -"./Modules/AlarmHandling/AlarmHandling.obj" \ -"./Modules/Control/DriverWithCallbackExample.obj" \ -"./Modules/Control/MillisecTask.obj" \ -"./Modules/Control/PIDAlgo.obj" \ -"./Modules/Control/control.obj" \ -"./Modules/Diagnostics/DiagnosticActions.obj" \ -"./Modules/Diagnostics/Diagnostics.obj" \ -"./Modules/Diagnostics/DiagnosticsHoming.obj" \ -"./Modules/Diagnostics/DiagnosticsJogging.obj" \ -"./Modules/General/GeneralHardware.obj" \ -"./Modules/General/MachineStatus.obj" \ -"./Modules/General/Safety.obj" \ -"./Modules/General/buttons.obj" \ -"./Modules/General/process.obj" \ -"./Modules/Heaters/Heaters_bit.obj" \ -"./Modules/Heaters/Heaters_init.obj" \ -"./Modules/Heaters/Heaters_maint.obj" \ -"./Modules/Heaters/Heaters_print.obj" \ -"./Modules/IDS/IDS_BIT.obj" \ -"./Modules/IDS/IDS_Cleaning.obj" \ -"./Modules/IDS/IDS_dispenser.obj" \ -"./Modules/IDS/IDS_init.obj" \ -"./Modules/IDS/IDS_maint.obj" \ -"./Modules/IDS/IDS_print.obj" \ -"./Modules/IFS/ifs.obj" \ -"./Modules/Stubs_Handler/Calculate.obj" \ -"./Modules/Stubs_Handler/Progress.obj" \ -"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ -"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ -"./Modules/Stubs_Handler/Stub_Dancer.obj" \ -"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ -"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ -"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ -"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ -"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ -"./Modules/Stubs_Handler/Stub_GPIO.obj" \ -"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ -"./Modules/Stubs_Handler/Stub_Heater.obj" \ -"./Modules/Stubs_Handler/Stub_I2C.obj" \ -"./Modules/Stubs_Handler/Stub_IntADC.obj" \ -"./Modules/Stubs_Handler/Stub_L6470.obj" \ -"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ -"./Modules/Stubs_Handler/Stub_Motor.obj" \ -"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ -"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ -"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ -"./Modules/Stubs_Handler/Stub_Status.obj" \ -"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ -"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ -"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ -"./Modules/Stubs_Handler/Stub_Valve.obj" \ -"./Modules/Stubs_Handler/User_Leds.obj" \ -"./Modules/Stubs_Handler/temperature_sensor.obj" \ -"./Modules/Thread/ThreadLoad.obj" \ -"./Modules/Thread/Thread_BIT.obj" \ -"./Modules/Thread/Thread_Winder.obj" \ -"./Modules/Thread/Thread_init.obj" \ -"./Modules/Thread/Thread_maint.obj" \ -"./Modules/Thread/Thread_print.obj" \ -"./Modules/Waste/Waste_BIT.obj" \ -"./Modules/Waste/Waste_init.obj" \ -"./Modules/Waste/Waste_maint.obj" \ -"./Modules/Waste/Waste_print.obj" \ -"./Modules/Waste/newWHS_init.obj" \ -"./StateMachines/Initialization/InitSequence.obj" \ -"./StateMachines/Initialization/PowerIdle.obj" \ -"./StateMachines/Initialization/PowerOffSequence.obj" \ -"./StateMachines/Printing/JobSTM.obj" \ -"./StateMachines/Printing/PrintingSTM.obj" \ -"../tm4c129xnczad.cmd" \ -$(GEN_CMDS__FLAG) \ --l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ --l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ --l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ --llibc.a \ - --include ../makefile.init - -RM := DEL /F -RMDIR := RMDIR /S/Q - -# All of the sources participating in the build are defined here --include sources.mk --include subdir_vars.mk --include Common/SWUpdate/subdir_vars.mk --include Common/SW_Info/subdir_vars.mk --include Common/Software_CRC/subdir_vars.mk --include Common/Sys_PinOut_Config/subdir_vars.mk --include Common/Utilities/subdir_vars.mk --include Common/protobuf-c/subdir_vars.mk --include Common/report/subdir_vars.mk --include Communication/subdir_vars.mk --include Communication/PMR/Common/subdir_vars.mk --include Communication/PMR/Connection/subdir_vars.mk --include Communication/PMR/Debugging/subdir_vars.mk --include Communication/PMR/Diagnostics/subdir_vars.mk --include Communication/PMR/EmbeddedParameters/subdir_vars.mk --include Communication/PMR/FirmwareUpgrade/subdir_vars.mk --include Communication/PMR/Hardware/subdir_vars.mk --include Communication/PMR/IO/subdir_vars.mk --include Communication/PMR/MachineStatus/subdir_vars.mk --include Communication/PMR/Power/subdir_vars.mk --include Communication/PMR/Printing/subdir_vars.mk --include Communication/PMR/Stubs/subdir_vars.mk --include Communication/PMR/ThreadLoading/subdir_vars.mk --include Drivers/ADC_Sampling/subdir_vars.mk --include Drivers/FPGA/subdir_vars.mk --include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk --include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk --include Drivers/FPGA/Full_Vme/subdir_vars.mk --include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk --include Drivers/FPGA/Motors_Driver/subdir_vars.mk --include Drivers/Flash_Memory/FATFS/subdir_vars.mk --include Drivers/Flash_Memory/subdir_vars.mk --include Drivers/Heater/subdir_vars.mk --include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk --include Drivers/I2C_Communication/DAC/subdir_vars.mk --include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk --include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk --include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk --include Drivers/I2C_Communication/subdir_vars.mk --include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk --include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk --include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk --include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk --include Drivers/Motors/subdir_vars.mk --include Drivers/On_Chip_Flash/subdir_vars.mk --include Drivers/SPI/subdir_vars.mk --include Drivers/SSI_Comm/Dancer/subdir_vars.mk --include Drivers/SSI_Comm/subdir_vars.mk --include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk --include Drivers/USB_Communication/subdir_vars.mk --include Drivers/Uart_Comm/subdir_vars.mk --include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk --include Drivers/Valves/subdir_vars.mk --include Drivers/flash_ram/subdir_vars.mk --include Modules/AlarmHandling/subdir_vars.mk --include Modules/Control/subdir_vars.mk --include Modules/Diagnostics/subdir_vars.mk --include Modules/General/subdir_vars.mk --include Modules/Heaters/subdir_vars.mk --include Modules/IDS/subdir_vars.mk --include Modules/IFS/subdir_vars.mk --include Modules/Stubs_Handler/subdir_vars.mk --include Modules/Thread/subdir_vars.mk --include Modules/Waste/subdir_vars.mk --include StateMachines/Initialization/subdir_vars.mk --include StateMachines/Printing/subdir_vars.mk --include subdir_rules.mk --include Common/SWUpdate/subdir_rules.mk --include Common/SW_Info/subdir_rules.mk --include Common/Software_CRC/subdir_rules.mk --include Common/Sys_PinOut_Config/subdir_rules.mk --include Common/Utilities/subdir_rules.mk --include Common/protobuf-c/subdir_rules.mk --include Common/report/subdir_rules.mk --include Communication/subdir_rules.mk --include Communication/PMR/Common/subdir_rules.mk --include Communication/PMR/Connection/subdir_rules.mk --include Communication/PMR/Debugging/subdir_rules.mk --include Communication/PMR/Diagnostics/subdir_rules.mk --include Communication/PMR/EmbeddedParameters/subdir_rules.mk --include Communication/PMR/FirmwareUpgrade/subdir_rules.mk --include Communication/PMR/Hardware/subdir_rules.mk --include Communication/PMR/IO/subdir_rules.mk --include Communication/PMR/MachineStatus/subdir_rules.mk --include Communication/PMR/Power/subdir_rules.mk --include Communication/PMR/Printing/subdir_rules.mk --include Communication/PMR/Stubs/subdir_rules.mk --include Communication/PMR/ThreadLoading/subdir_rules.mk --include Drivers/ADC_Sampling/subdir_rules.mk --include Drivers/FPGA/subdir_rules.mk --include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk --include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk --include Drivers/FPGA/Full_Vme/subdir_rules.mk --include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk --include Drivers/FPGA/Motors_Driver/subdir_rules.mk --include Drivers/Flash_Memory/FATFS/subdir_rules.mk --include Drivers/Flash_Memory/subdir_rules.mk --include Drivers/Heater/subdir_rules.mk --include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk --include Drivers/I2C_Communication/DAC/subdir_rules.mk --include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk --include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk --include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk --include Drivers/I2C_Communication/subdir_rules.mk --include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk --include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk --include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk --include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk --include Drivers/Motors/subdir_rules.mk --include Drivers/On_Chip_Flash/subdir_rules.mk --include Drivers/SPI/subdir_rules.mk --include Drivers/SSI_Comm/Dancer/subdir_rules.mk --include Drivers/SSI_Comm/subdir_rules.mk --include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk --include Drivers/USB_Communication/subdir_rules.mk --include Drivers/Uart_Comm/subdir_rules.mk --include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk --include Drivers/Valves/subdir_rules.mk --include Drivers/flash_ram/subdir_rules.mk --include Modules/AlarmHandling/subdir_rules.mk --include Modules/Control/subdir_rules.mk --include Modules/Diagnostics/subdir_rules.mk --include Modules/General/subdir_rules.mk --include Modules/Heaters/subdir_rules.mk --include Modules/IDS/subdir_rules.mk --include Modules/IFS/subdir_rules.mk --include Modules/Stubs_Handler/subdir_rules.mk --include Modules/Thread/subdir_rules.mk --include Modules/Waste/subdir_rules.mk --include StateMachines/Initialization/subdir_rules.mk --include StateMachines/Printing/subdir_rules.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C55_DEPS)),) --include $(C55_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -ifneq ($(strip $(S67_DEPS)),) --include $(S67_DEPS) -endif -ifneq ($(strip $(S62_DEPS)),) --include $(S62_DEPS) -endif -ifneq ($(strip $(S_DEPS)),) --include $(S_DEPS) -endif -ifneq ($(strip $(OPT_DEPS)),) --include $(OPT_DEPS) -endif -ifneq ($(strip $(C??_DEPS)),) --include $(C??_DEPS) -endif -ifneq ($(strip $(ASM_UPPER_DEPS)),) --include $(ASM_UPPER_DEPS) -endif -ifneq ($(strip $(S??_DEPS)),) --include $(S??_DEPS) -endif -ifneq ($(strip $(C64_DEPS)),) --include $(C64_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(S64_DEPS)),) --include $(S64_DEPS) -endif -ifneq ($(strip $(INO_DEPS)),) --include $(INO_DEPS) -endif -ifneq ($(strip $(CLA_DEPS)),) --include $(CLA_DEPS) -endif -ifneq ($(strip $(S55_DEPS)),) --include $(S55_DEPS) -endif -ifneq ($(strip $(SV7A_DEPS)),) --include $(SV7A_DEPS) -endif -ifneq ($(strip $(C62_DEPS)),) --include $(C62_DEPS) -endif -ifneq ($(strip $(C67_DEPS)),) --include $(C67_DEPS) -endif -ifneq ($(strip $(PDE_DEPS)),) --include $(PDE_DEPS) -endif -ifneq ($(strip $(K_DEPS)),) --include $(K_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(C43_DEPS)),) --include $(C43_DEPS) -endif -ifneq ($(strip $(S43_DEPS)),) --include $(S43_DEPS) -endif -ifneq ($(strip $(ASM_DEPS)),) --include $(ASM_DEPS) -endif -ifneq ($(strip $(S_UPPER_DEPS)),) --include $(S_UPPER_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(SA_DEPS)),) --include $(SA_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables -EXE_OUTPUTS += \ -Embedded.out \ - -EXE_OUTPUTS__QUOTED += \ -"Embedded.out" \ - -BIN_OUTPUTS += \ -Embedded.bin \ - -BIN_OUTPUTS__QUOTED += \ -"Embedded.bin" \ - - -# All Target -all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) - @$(MAKE) --no-print-directory -Onone "Embedded.out" - -# Tool invocations -Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) - @echo 'Building target: $@' - @echo 'Invoking: ARM Linker' - @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' - $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") - $(shell type "ccsObjs.opt" >> "ccsLinker.opt") - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" - @echo 'Finished building target: $@' - @echo ' ' - @$(MAKE) --no-print-directory post-build - -Embedded.bin: $(EXE_OUTPUTS) - @echo 'Invoking: ARM Hex Utility' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) - @echo 'Finished building: $@' - @echo ' ' - @$(MAKE) --no-print-directory post-build - -# Other Targets -clean: - -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) - -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) - -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" - -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" - -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" - -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" - -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" - -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" - -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" - -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" - -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" - -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" - -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" - -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" - -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" - -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" - -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" - -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" - -$(RM) "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" - -$(RM) "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" - -$(RM) "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" - -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" - -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" - -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" - -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" - -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" - -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" - -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" - -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" - -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" - -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" - -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" - -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" - -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" - -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" - -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" - -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" - -$(RM) "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" - -$(RM) "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" - -$(RM) "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" - -@echo 'Finished clean' - -@echo ' ' - -post-build: - -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" - -@echo ' ' - -.PHONY: all clean dependents -.SECONDARY: - --include ../makefile.targets - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/40f7459a8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/40f7459a8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/40f7459a8f71001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/609310398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/609310398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/609310398871001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/802617cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/802617cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/802617cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/d0b68b398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/d0b68b398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/d0b68b398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/e1a9158b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/e1a9158b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/e1a9158b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/0015174f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/0015174f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/0015174f9571001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/00efeb18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/00efeb18b66e001a173da96cce181ab0 deleted file mode 100644 index 5712cfaab..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/00efeb18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,204 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/30490cabb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/30490cabb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 3c7aad50c..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/30490cabb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,162 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/30883eac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/30883eac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/30883eac9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/401ed8388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/401ed8388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/401ed8388871001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/408f698eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/408f698eb56e001a173da96cce181ab0 deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/408f698eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/506c11bbf56c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/506c11bbf56c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/506c11bbf56c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/706a9416b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/706a9416b66e001a173da96cce181ab0 deleted file mode 100644 index de1ba5fae..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/706a9416b66e001a173da96cce181ab0 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/a0133ccc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/a0133ccc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/a0133ccc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/b078be429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/b078be429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/b078be429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/e175b26c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/e175b26c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/e175b26c8771001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/20fe23b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/20fe23b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/20fe23b58771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/218d546e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/218d546e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/218d546e8771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/30d8f7429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/30d8f7429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/30d8f7429b71001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/41364b3a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/41364b3a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/41364b3a8871001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/500c9829c36e001a17dd93e105fd0cb6 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/500c9829c36e001a17dd93e105fd0cb6 deleted file mode 100644 index 69a76989a..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/500c9829c36e001a17dd93e105fd0cb6 +++ /dev/null @@ -1,86 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -#ifndef _MB_FRAME_H -#define _MB_FRAME_H - -#ifdef __cplusplus -PR_BEGIN_EXTERN_C -#endif - -/*! - * Constants which defines the format of a modbus frame. The example is - * shown for a Modbus RTU/ASCII frame. Note that the Modbus PDU is not - * dependent on the underlying transport. - * - * - * <------------------------ MODBUS SERIAL LINE PDU (1) -------------------> - * <----------- MODBUS PDU (1') ----------------> - * +-----------+---------------+----------------------------+-------------+ - * | Address | Function Code | Data | CRC/LRC | - * +-----------+---------------+----------------------------+-------------+ - * | | | | - * (2) (3/2') (3') (4) - * - * (1) ... MB_SER_PDU_SIZE_MAX = 256 - * (2) ... MB_SER_PDU_ADDR_OFF = 0 - * (3) ... MB_SER_PDU_PDU_OFF = 1 - * (4) ... MB_SER_PDU_SIZE_CRC = 2 - * - * (1') ... MB_PDU_SIZE_MAX = 253 - * (2') ... MB_PDU_FUNC_OFF = 0 - * (3') ... MB_PDU_DATA_OFF = 1 - * - */ - -/* ----------------------- Defines ------------------------------------------*/ -#define MB_PDU_SIZE_MAX 253 /*!< Maximum size of a PDU. */ -#define MB_PDU_SIZE_MIN 1 /*!< Function Code */ -#define MB_PDU_FUNC_OFF 0 /*!< Offset of function code in PDU. */ -#define MB_PDU_DATA_OFF 1 /*!< Offset for response data in PDU. */ - -/* ----------------------- Prototypes 0-------------------------------------*/ -typedef void ( *pvMBFrameStart ) ( void ); - -typedef void ( *pvMBFrameStop ) ( void ); - -typedef eMBErrorCode( *peMBFrameReceive ) ( UCHAR * pucRcvAddress, - UCHAR ** pucFrame, - USHORT * pusLength ); - -typedef eMBErrorCode( *peMBFrameSend ) ( UCHAR slaveAddress, - const UCHAR * pucFrame, - USHORT usLength ); - -typedef void( *pvMBFrameClose ) ( void ); - -#ifdef __cplusplus -PR_END_EXTERN_C -#endif -#endif diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/5162168a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/5162168a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/5162168a9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/60e971ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/60e971ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/60e971ab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/7049b38b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/7049b38b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/7049b38b9571001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/70c0af9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/70c0af9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/70c0af9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/a0720faab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/a0720faab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 7658bc5b9..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/a0720faab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ -../Common/Sys_PinOut_Config/Pin.c \ -../Common/Sys_PinOut_Config/Pin_config.c - -C_DEPS += \ -./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ -./Common/Sys_PinOut_Config/Pin.d \ -./Common/Sys_PinOut_Config/Pin_config.d - -OBJS += \ -./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ -./Common/Sys_PinOut_Config/Pin.obj \ -./Common/Sys_PinOut_Config/Pin_config.obj - -OBJS__QUOTED += \ -"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ -"Common\Sys_PinOut_Config\Pin.obj" \ -"Common\Sys_PinOut_Config\Pin_config.obj" - -C_DEPS__QUOTED += \ -"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ -"Common\Sys_PinOut_Config\Pin.d" \ -"Common\Sys_PinOut_Config\Pin_config.d" - -C_SRCS__QUOTED += \ -"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ -"../Common/Sys_PinOut_Config/Pin.c" \ -"../Common/Sys_PinOut_Config/Pin_config.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/a0bb1fe78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/a0bb1fe78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/a0bb1fe78f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/b0c29aaab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/b0c29aaab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index c909f2ae6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/b0c29aaab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,410 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ -../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ -../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ -../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ -../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ -../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ -../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ -../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ -../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ -../Communication/PMR/Diagnostics/Event.pb-c.c \ -../Communication/PMR/Diagnostics/EventType.pb-c.c \ -../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ -../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ -../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ -../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ -../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ -../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ -../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ -../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ -../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ -../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ -../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ -../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ -../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ -../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ -../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ -../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ -../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ -../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ -../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ -../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ -../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ -../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ -../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ -../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ -../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ -../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ -../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ -../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ -../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ -../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ -../Communication/PMR/Diagnostics/ValveState.pb-c.c \ -../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ -../Communication/PMR/Diagnostics/ValveType.pb-c.c - -C_DEPS += \ -./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ -./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ -./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ -./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ -./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ -./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ -./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ -./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ -./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ -./Communication/PMR/Diagnostics/Event.pb-c.d \ -./Communication/PMR/Diagnostics/EventType.pb-c.d \ -./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ -./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ -./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ -./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ -./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ -./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ -./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ -./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ -./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ -./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ -./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ -./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ -./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ -./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ -./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ -./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ -./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ -./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ -./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ -./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ -./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ -./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ -./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ -./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ -./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ -./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ -./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ -./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ -./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ -./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ -./Communication/PMR/Diagnostics/ValveState.pb-c.d \ -./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ -./Communication/PMR/Diagnostics/ValveType.pb-c.d - -OBJS += \ -./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ -./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ -./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ -./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ -./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ -./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ -./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ -./Communication/PMR/Diagnostics/Event.pb-c.obj \ -./Communication/PMR/Diagnostics/EventType.pb-c.obj \ -./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ -./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ -./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ -./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ -./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ -./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ -./Communication/PMR/Diagnostics/ValveType.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ -"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ -"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ -"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ -"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ -"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ -"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ -"Communication\PMR\Diagnostics\Event.pb-c.obj" \ -"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ -"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ -"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ -"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ -"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ -"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ -"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ -"Communication\PMR\Diagnostics\ValveType.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ -"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ -"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ -"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ -"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ -"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ -"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ -"Communication\PMR\Diagnostics\Event.pb-c.d" \ -"Communication\PMR\Diagnostics\EventType.pb-c.d" \ -"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ -"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ -"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ -"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ -"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ -"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ -"Communication\PMR\Diagnostics\ValveType.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ -"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ -"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ -"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ -"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ -"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ -"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ -"../Communication/PMR/Diagnostics/Event.pb-c.c" \ -"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ -"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ -"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ -"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ -"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ -"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ -"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ -"../Communication/PMR/Diagnostics/ValveType.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/e03b6a18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/e03b6a18b66e001a173da96cce181ab0 deleted file mode 100644 index 0a0915c73..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/e03b6a18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/e09ac98cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/e09ac98cb56e001a173da96cce181ab0 deleted file mode 100644 index 94e56c077..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/e09ac98cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,146 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ -../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ -../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ -../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ -../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ -../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ -../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ -../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ -../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ -../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ -../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ -../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ -../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ -../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ -../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ -../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ -../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ -../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ -../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ -../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ -../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ -./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ -./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ -./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ -./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ -./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ -./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ -./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ -./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ -./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ -./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ -./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ -./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ -./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ -./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ -./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ -./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ -./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ -./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ -./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ -./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d - -OBJS += \ -./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ -./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ -./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ -./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ -./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ -./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ -./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ -./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ -./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ -./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ -./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ -./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ -./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ -./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ -./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ -./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ -./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ -./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ -./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ -./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ -./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ -"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ -"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ -"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ -"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ -"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ -"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ -"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ -"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ -"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ -"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ -"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ -"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ -"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ -"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ -"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ -"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ -"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ -"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ -"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ -"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ -"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ -"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ -"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ -"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ -"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ -"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ -"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ -"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ -"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ -"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/e123558b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/e123558b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/e123558b9571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/f0cf259b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/f0cf259b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/f0cf259b8f71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/f0eb846e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/f0eb846e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/f0eb846e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/10a7298b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/10a7298b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/10a7298b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/20839ee39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/20839ee39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/20839ee39a71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/20f60a6d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/20f60a6d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/20f60a6d8771001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/3087dd9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/3087dd9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/3087dd9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/50166b9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/50166b9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/50166b9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/6019768b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/6019768b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/6019768b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/60a28d18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/60a28d18b66e001a173da96cce181ab0 deleted file mode 100644 index 3c6a8f895..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/60a28d18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ -../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ -./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ -./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ -"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ -"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ -"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/701420aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/701420aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 406e76651..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/701420aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/report/distributor.c \ -../Common/report/filter.c \ -../Common/report/reportInit.c - -C_DEPS += \ -./Common/report/distributor.d \ -./Common/report/filter.d \ -./Common/report/reportInit.d - -OBJS += \ -./Common/report/distributor.obj \ -./Common/report/filter.obj \ -./Common/report/reportInit.obj - -OBJS__QUOTED += \ -"Common\report\distributor.obj" \ -"Common\report\filter.obj" \ -"Common\report\reportInit.obj" - -C_DEPS__QUOTED += \ -"Common\report\distributor.d" \ -"Common\report\filter.d" \ -"Common\report\reportInit.d" - -C_SRCS__QUOTED += \ -"../Common/report/distributor.c" \ -"../Common/report/filter.c" \ -"../Common/report/reportInit.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/90664e9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/90664e9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/90664e9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/b090deb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/b090deb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/b090deb48771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/c083c3b38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/c083c3b38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/c083c3b38771001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/c1d8988a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/c1d8988a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/c1d8988a9571001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/e01b75da6d6e001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/e01b75da6d6e001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/e01b75da6d6e001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/e0a2b0b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/e0a2b0b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/e0a2b0b48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/0013b7acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/0013b7acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 88bcc36e7..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/0013b7acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/I2C.c \ -../Drivers/I2C_Communication/I2C_Comm.c \ -../Drivers/I2C_Communication/I2C_FIFO.c \ -../Drivers/I2C_Communication/I2C_Task.c - -C_DEPS += \ -./Drivers/I2C_Communication/I2C.d \ -./Drivers/I2C_Communication/I2C_Comm.d \ -./Drivers/I2C_Communication/I2C_FIFO.d \ -./Drivers/I2C_Communication/I2C_Task.d - -OBJS += \ -./Drivers/I2C_Communication/I2C.obj \ -./Drivers/I2C_Communication/I2C_Comm.obj \ -./Drivers/I2C_Communication/I2C_FIFO.obj \ -./Drivers/I2C_Communication/I2C_Task.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\I2C.obj" \ -"Drivers\I2C_Communication\I2C_Comm.obj" \ -"Drivers\I2C_Communication\I2C_FIFO.obj" \ -"Drivers\I2C_Communication\I2C_Task.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\I2C.d" \ -"Drivers\I2C_Communication\I2C_Comm.d" \ -"Drivers\I2C_Communication\I2C_FIFO.d" \ -"Drivers\I2C_Communication\I2C_Task.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/I2C.c" \ -"../Drivers/I2C_Communication/I2C_Comm.c" \ -"../Drivers/I2C_Communication/I2C_FIFO.c" \ -"../Drivers/I2C_Communication/I2C_Task.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/0112f0b38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/0112f0b38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/0112f0b38771001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/205d278b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/205d278b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/205d278b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/403159ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/403159ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/403159ab9071001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/503a55509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/503a55509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/503a55509571001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/50e87ba9076d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/50e87ba9076d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/50e87ba9076d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/50f307e49a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/50f307e49a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/50f307e49a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/60584fcd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/60584fcd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/60584fcd9071001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/70bde38db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/70bde38db56e001a173da96cce181ab0 deleted file mode 100644 index 08394bc52..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/70bde38db56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/70cfe4ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/70cfe4ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/70cfe4ab9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/90a994429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/90a994429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/90a994429b71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/a0b821419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/a0b821419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/a0b821419b71001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/d09f4209f56c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/d09f4209f56c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/d09f4209f56c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/f08080ca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/f08080ca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/f08080ca9071001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/106fc3acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/106fc3acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 431533061..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/106fc3acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/208d546e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/208d546e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/208d546e8771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/21fe23b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/21fe23b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/21fe23b58771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/40342c8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/40342c8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/40342c8a9571001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/409139429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/409139429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/409139429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/51dd6f6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/51dd6f6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/51dd6f6e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/802480acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/802480acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 83cbddb67..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/802480acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Flash_Memory/Flash_Memory.c - -C_DEPS += \ -./Drivers/Flash_Memory/Flash_Memory.d - -OBJS += \ -./Drivers/Flash_Memory/Flash_Memory.obj - -OBJS__QUOTED += \ -"Drivers\Flash_Memory\Flash_Memory.obj" - -C_DEPS__QUOTED += \ -"Drivers\Flash_Memory\Flash_Memory.d" - -C_SRCS__QUOTED += \ -"../Drivers/Flash_Memory/Flash_Memory.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/a09e4facb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/a09e4facb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 708b11b8a..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/a09e4facb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,57 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/e03d2fb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/e03d2fb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/e03d2fb48771001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/f022dce68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/f022dce68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/f022dce68f71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/1066e36b8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/1066e36b8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/1066e36b8771001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/700d2eac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/700d2eac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/700d2eac9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/80e338e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/80e338e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/80e338e39a71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/9058a9e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/9058a9e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/9058a9e39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/d026f2e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/d026f2e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/d026f2e78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/d0d06facb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/d0d06facb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 87c0ad368..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/d0d06facb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ -../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ -../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c - -C_DEPS += \ -./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ -./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ -./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d - -OBJS += \ -./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ -./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ -./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj - -OBJS__QUOTED += \ -"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ -"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ -"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" - -C_DEPS__QUOTED += \ -"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ -"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ -"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" - -C_SRCS__QUOTED += \ -"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ -"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ -"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/e0ef11439b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/e0ef11439b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/e0ef11439b71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/100529519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/100529519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/100529519571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/215d278b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/215d278b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/215d278b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/301c628b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/301c628b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/301c628b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/5025b901db6c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/5025b901db6c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/5025b901db6c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/51fb37b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/51fb37b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/51fb37b58771001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/905e69509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/905e69509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/905e69509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/30dfaae39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/30dfaae39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/30dfaae39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/80e2c7e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/80e2c7e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/80e2c7e78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/9001136c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/9001136c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/9001136c8771001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/901cb1cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/901cb1cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/901cb1cc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/9065cb200b6d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/9065cb200b6d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/9065cb200b6d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/b0813618b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/b0813618b66e001a173da96cce181ab0 deleted file mode 100644 index f8ecd45e0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/b0813618b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/c018a6ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/c018a6ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/c018a6ab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/f0c17ecc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/f0c17ecc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/f0c17ecc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/0118e9b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/0118e9b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/0118e9b48771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/105c1ee78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/105c1ee78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/105c1ee78f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/1077c718b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/1077c718b66e001a173da96cce181ab0 deleted file mode 100644 index 80187ae88..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/1077c718b66e001a173da96cce181ab0 +++ /dev/null @@ -1,43 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/203ce8a99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/203ce8a99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/203ce8a99071001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/20ec0e8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/20ec0e8eb56e001a173da96cce181ab0 deleted file mode 100644 index f802ef559..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/20ec0e8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ -../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c - -C_DEPS += \ -./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ -./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d - -OBJS += \ -./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ -./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ -"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ -"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ -"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/308dcb419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/308dcb419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/308dcb419b71001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/71b0e2398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/71b0e2398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/71b0e2398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/901f7f6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/901f7f6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/901f7f6e8771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/a08db4429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/a08db4429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/a08db4429b71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/b01f418eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/b01f418eb56e001a173da96cce181ab0 deleted file mode 100644 index f2fecf89b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/b01f418eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/On_Chip_Flash/Flashstore.c - -C_DEPS += \ -./Drivers/On_Chip_Flash/Flashstore.d - -OBJS += \ -./Drivers/On_Chip_Flash/Flashstore.obj - -OBJS__QUOTED += \ -"Drivers\On_Chip_Flash\Flashstore.obj" - -C_DEPS__QUOTED += \ -"Drivers\On_Chip_Flash\Flashstore.d" - -C_SRCS__QUOTED += \ -"../Drivers/On_Chip_Flash/Flashstore.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/b096ad398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/b096ad398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/b096ad398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/b173c19b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/b173c19b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/b173c19b8f71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/c164d7b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/c164d7b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/c164d7b48771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/e0245918b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/e0245918b66e001a173da96cce181ab0 deleted file mode 100644 index 88bcc36e7..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/e0245918b66e001a173da96cce181ab0 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/I2C.c \ -../Drivers/I2C_Communication/I2C_Comm.c \ -../Drivers/I2C_Communication/I2C_FIFO.c \ -../Drivers/I2C_Communication/I2C_Task.c - -C_DEPS += \ -./Drivers/I2C_Communication/I2C.d \ -./Drivers/I2C_Communication/I2C_Comm.d \ -./Drivers/I2C_Communication/I2C_FIFO.d \ -./Drivers/I2C_Communication/I2C_Task.d - -OBJS += \ -./Drivers/I2C_Communication/I2C.obj \ -./Drivers/I2C_Communication/I2C_Comm.obj \ -./Drivers/I2C_Communication/I2C_FIFO.obj \ -./Drivers/I2C_Communication/I2C_Task.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\I2C.obj" \ -"Drivers\I2C_Communication\I2C_Comm.obj" \ -"Drivers\I2C_Communication\I2C_FIFO.obj" \ -"Drivers\I2C_Communication\I2C_Task.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\I2C.d" \ -"Drivers\I2C_Communication\I2C_Comm.d" \ -"Drivers\I2C_Communication\I2C_FIFO.d" \ -"Drivers\I2C_Communication\I2C_Task.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/I2C.c" \ -"../Drivers/I2C_Communication/I2C_Comm.c" \ -"../Drivers/I2C_Communication/I2C_FIFO.c" \ -"../Drivers/I2C_Communication/I2C_Task.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/e0551e9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/e0551e9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/e0551e9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/f0f8ddcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/f0f8ddcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/f0f8ddcc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/1083a79b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/1083a79b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/1083a79b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/309e7c8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/309e7c8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/309e7c8a9571001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/5093eda99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/5093eda99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/5093eda99071001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/609f368b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/609f368b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/609f368b9571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/71af8d509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/71af8d509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/71af8d509571001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/a0d1a3b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/a0d1a3b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/a0d1a3b48771001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/b04e8be78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/b04e8be78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/b04e8be78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/005d08ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/005d08ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/005d08ac9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/0081b9cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/0081b9cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/0081b9cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/00b38416b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/00b38416b66e001a173da96cce181ab0 deleted file mode 100644 index f0d60cd57..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/00b38416b66e001a173da96cce181ab0 +++ /dev/null @@ -1,43 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/30acefcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/30acefcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/30acefcc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/40aa64cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/40aa64cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/40aa64cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/40f1bcaa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/40f1bcaa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/40f1bcaa9071001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/803ffde68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/803ffde68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/803ffde68f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/900ca36c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/900ca36c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/900ca36c8771001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/91b1088b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/91b1088b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/91b1088b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/c08532e49a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/c08532e49a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/c08532e49a71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/d1f3178b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/d1f3178b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/d1f3178b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/103313e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/103313e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/103313e39a71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/40220dadb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/40220dadb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 2ef8f47b3..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/40220dadb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/SSI_Comm/SSI_Comm.c - -C_DEPS += \ -./Drivers/SSI_Comm/SSI_Comm.d - -OBJS += \ -./Drivers/SSI_Comm/SSI_Comm.obj - -OBJS__QUOTED += \ -"Drivers\SSI_Comm\SSI_Comm.obj" - -C_DEPS__QUOTED += \ -"Drivers\SSI_Comm\SSI_Comm.d" - -C_SRCS__QUOTED += \ -"../Drivers/SSI_Comm/SSI_Comm.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/60717b419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/60717b419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/60717b419b71001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/61b4f48a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/61b4f48a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/61b4f48a9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/70cec96c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/70cec96c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/70cec96c8771001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/90d065aa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/90d065aa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/90d065aa9071001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/a0355fe78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/a0355fe78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/a0355fe78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/a0ee58e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/a0ee58e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/a0ee58e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/b0d05c429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/b0d05c429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/b0d05c429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/c028b7388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/c028b7388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/c028b7388871001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/f06573429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/f06573429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/f06573429b71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/f1e7abb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/f1e7abb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/f1e7abb48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/01abbf6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/01abbf6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/01abbf6e8771001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/30b0e08db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/30b0e08db56e001a173da96cce181ab0 deleted file mode 100644 index 5d5798422..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/30b0e08db56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/4057264f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/4057264f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/4057264f9571001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/5090d9e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/5090d9e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/5090d9e39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/7034dfacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/7034dfacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index e9d88a3ed..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/7034dfacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ -../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ -./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ -./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ -"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ -"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ -"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/705348419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/705348419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/705348419b71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/70f695acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/70f695acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 886b38a4e..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/70f695acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/a0133ee39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/a0133ee39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/a0133ee39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/b04b56e29a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/b04b56e29a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/b04b56e29a71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/c07429e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/c07429e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/c07429e68f71001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/30dd289b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/30dd289b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/30dd289b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/409b008b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/409b008b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/409b008b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/40e3a7e19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/40e3a7e19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/40e3a7e19a71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/70c05018b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/70c05018b66e001a173da96cce181ab0 deleted file mode 100644 index 74730e604..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/70c05018b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/90aeaeacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/90aeaeacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 74730e604..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/90aeaeacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/91fe889b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/91fe889b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/91fe889b8f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a01816ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a01816ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a01816ac9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a04b0017b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a04b0017b66e001a173da96cce181ab0 deleted file mode 100644 index 0d046f6d7..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a04b0017b66e001a173da96cce181ab0 +++ /dev/null @@ -1,155 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a0c2b4398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a0c2b4398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a0c2b4398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/b16c313a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/b16c313a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/b16c313a8871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/c0f0024f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/c0f0024f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/c0f0024f9571001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/d07a68cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/d07a68cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/d07a68cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/e0fa31509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/e0fa31509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/e0fa31509571001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/f015b1509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/f015b1509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/f015b1509571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/00d3308b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/00d3308b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/00d3308b9571001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/104826b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/104826b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/104826b58771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/11edd2b38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/11edd2b38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/11edd2b38771001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/30d2ff509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/30d2ff509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/30d2ff509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/505a3b8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/505a3b8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/505a3b8b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/50bedfb38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/50bedfb38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/50bedfb38771001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/50f22d6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/50f22d6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/50f22d6e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/603071acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/603071acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 10e0deef0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/603071acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/60ecb69b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/60ecb69b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/60ecb69b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/707ba9cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/707ba9cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/707ba9cc9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/b0a9756e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/b0a9756e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/b0a9756e8771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/d0a293e29a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/d0a293e29a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/d0a293e29a71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/f065f6acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/f065f6acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 3c6a8f895..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/f065f6acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ -../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ -./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ -./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ -"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ -"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ -"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/40cbfab48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/40cbfab48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/40cbfab48771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/41add5388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/41add5388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/41add5388871001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/50d19d429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/50d19d429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/50d19d429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/6028a34f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/6028a34f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/6028a34f9571001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/61c24db48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/61c24db48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/61c24db48771001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/700c6e18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/700c6e18b66e001a173da96cce181ab0 deleted file mode 100644 index e336f53b6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/700c6e18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/8122c8b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/8122c8b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/8122c8b48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/81f6ce388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/81f6ce388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/81f6ce388871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/a05394adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/a05394adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index a1c19fe3c..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/a05394adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/a0a8a618b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/a0a8a618b66e001a173da96cce181ab0 deleted file mode 100644 index b223c7168..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/a0a8a618b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/c09306e49a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/c09306e49a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/c09306e49a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/e135876e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/e135876e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/e135876e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/f0a06d29c36e001a17dd93e105fd0cb6 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/f0a06d29c36e001a17dd93e105fd0cb6 deleted file mode 100644 index 3198f1be6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/f0a06d29c36e001a17dd93e105fd0cb6 +++ /dev/null @@ -1,128 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -#ifndef _MB_PORT_H -#define _MB_PORT_H - -#ifdef __cplusplus -PR_BEGIN_EXTERN_C -#endif - -/* ----------------------- Type definitions ---------------------------------*/ - -typedef enum -{ - EV_READY, /*!< Startup finished. */ - EV_FRAME_RECEIVED, /*!< Frame received. */ - EV_EXECUTE, /*!< Execute function. */ - EV_FRAME_SENT /*!< Frame sent. */ -} eMBEventType; - -/*! \ingroup modbus - * \brief Parity used for characters in serial mode. - * - * The parity which should be applied to the characters sent over the serial - * link. Please note that this values are actually passed to the porting - * layer and therefore not all parity modes might be available. - */ -typedef enum -{ - MB_PAR_NONE, /*!< No parity. */ - MB_PAR_ODD, /*!< Odd parity. */ - MB_PAR_EVEN /*!< Even parity. */ -} eMBParity; - -/* ----------------------- Supporting functions -----------------------------*/ -BOOL xMBPortEventInit( void ); - -BOOL xMBPortEventPost( eMBEventType eEvent ); - -BOOL xMBPortEventGet( /*@out@ */ eMBEventType * eEvent ); - -/* ----------------------- Serial port functions ----------------------------*/ - -BOOL xMBPortSerialInit( UCHAR ucPort, ULONG ulBaudRate, - UCHAR ucDataBits, eMBParity eParity ); - -void vMBPortClose( void ); - -void xMBPortSerialClose( void ); - -void vMBPortSerialEnable( BOOL xRxEnable, BOOL xTxEnable ); - -BOOL xMBPortSerialGetByte( CHAR * pucByte ); - -BOOL xMBPortSerialPutByte( CHAR ucByte ); - -/* ----------------------- Timers functions ---------------------------------*/ -BOOL xMBPortTimersInit( USHORT usTimeOut50us ); - -void xMBPortTimersClose( void ); - -void vMBPortTimersEnable( void ); - -void vMBPortTimersDisable( void ); - -void vMBPortTimersDelay( USHORT usTimeOutMS ); - -/* ----------------------- Callback for the protocol stack ------------------*/ - -/*! - * \brief Callback function for the porting layer when a new byte is - * available. - * - * Depending upon the mode this callback function is used by the RTU or - * ASCII transmission layers. In any case a call to xMBPortSerialGetByte() - * must immediately return a new character. - * - * \return TRUE if a event was posted to the queue because - * a new byte was received. The port implementation should wake up the - * tasks which are currently blocked on the eventqueue. - */ -extern BOOL( *pxMBFrameCBByteReceived ) ( void ); - -extern BOOL( *pxMBFrameCBTransmitterEmpty ) ( void ); - -extern BOOL( *pxMBPortCBTimerExpired ) ( void ); - -/* ----------------------- TCP port functions -------------------------------*/ -BOOL xMBTCPPortInit( USHORT usTCPPort ); - -void vMBTCPPortClose( void ); - -void vMBTCPPortDisable( void ); - -BOOL xMBTCPPortGetRequest( UCHAR **ppucMBTCPFrame, USHORT * usTCPLength ); - -BOOL xMBTCPPortSendResponse( const UCHAR *pucMBTCPFrame, USHORT usTCPLength ); - -#ifdef __cplusplus -PR_END_EXTERN_C -#endif -#endif diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/50cbaeab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/50cbaeab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/50cbaeab9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/50dd6f6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/50dd6f6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/50dd6f6e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/80a742e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/80a742e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/80a742e39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/909934cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/909934cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/909934cc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/a04b5e8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/a04b5e8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/a04b5e8b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/b07dd8acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/b07dd8acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index ce5d85f2d..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/b07dd8acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/c0c91a6c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/c0c91a6c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/c0c91a6c8771001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/e08154519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/e08154519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/e08154519571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/10427529c36e001a17dd93e105fd0cb6 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/10427529c36e001a17dd93e105fd0cb6 deleted file mode 100644 index adbc85da9..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/10427529c36e001a17dd93e105fd0cb6 +++ /dev/null @@ -1,87 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -/* ----------------------- System includes ----------------------------------*/ -#include "stdlib.h" -#include "string.h" - -/* ----------------------- Platform includes --------------------------------*/ -#include "port.h" - -/* ----------------------- Modbus includes ----------------------------------*/ -#include "mb.h" -#include "mbframe.h" -#include "mbproto.h" -#include "mbconfig.h" - -#if MB_FUNC_OTHER_REP_SLAVEID_ENABLED > 0 - -/* ----------------------- Static variables ---------------------------------*/ -static UCHAR ucMBSlaveID[MB_FUNC_OTHER_REP_SLAVEID_BUF]; -static USHORT usMBSlaveIDLen; - -/* ----------------------- Start implementation -----------------------------*/ - -eMBErrorCode -eMBSetSlaveID( UCHAR ucSlaveID, BOOL xIsRunning, - UCHAR const *pucAdditional, USHORT usAdditionalLen ) -{ - eMBErrorCode eStatus = MB_ENOERR; - - /* the first byte and second byte in the buffer is reserved for - * the parameter ucSlaveID and the running flag. The rest of - * the buffer is available for additional data. */ - if( usAdditionalLen + 2 < MB_FUNC_OTHER_REP_SLAVEID_BUF ) - { - usMBSlaveIDLen = 0; - ucMBSlaveID[usMBSlaveIDLen++] = ucSlaveID; - ucMBSlaveID[usMBSlaveIDLen++] = ( UCHAR )( xIsRunning ? 0xFF : 0x00 ); - if( usAdditionalLen > 0 ) - { - memcpy( &ucMBSlaveID[usMBSlaveIDLen], pucAdditional, - ( size_t )usAdditionalLen ); - usMBSlaveIDLen += usAdditionalLen; - } - } - else - { - eStatus = MB_ENORES; - } - return eStatus; -} - -eMBException -eMBFuncReportSlaveID( UCHAR * pucFrame, USHORT * usLen ) -{ - memcpy( &pucFrame[MB_PDU_DATA_OFF], &ucMBSlaveID[0], ( size_t )usMBSlaveIDLen ); - *usLen = ( USHORT )( MB_PDU_DATA_OFF + usMBSlaveIDLen ); - return MB_EX_NONE; -} - -#endif diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/319c9b9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/319c9b9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/319c9b9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/706c2f8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/706c2f8eb56e001a173da96cce181ab0 deleted file mode 100644 index 2a1ae80e0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/706c2f8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ -../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ -./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ -./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ -"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ -"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ -"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/00411fe39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/00411fe39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/00411fe39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/00d2866c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/00d2866c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/00d2866c8771001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/20b3e49b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/20b3e49b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/20b3e49b8f71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/30bd916e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/30bd916e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/30bd916e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/41fbe14e9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/41fbe14e9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/41fbe14e9571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/506ad3ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/506ad3ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/506ad3ab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/604033b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/604033b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/604033b58771001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/a076ece68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/a076ece68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/a076ece68f71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/d06bee8db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/d06bee8db56e001a173da96cce181ab0 deleted file mode 100644 index 0d151c449..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/d06bee8db56e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/e07bdd8db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/e07bdd8db56e001a173da96cce181ab0 deleted file mode 100644 index 886b38a4e..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/e07bdd8db56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/e138138b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/e138138b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/e138138b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/10c931429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/10c931429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/10c931429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/2087b618b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/2087b618b66e001a173da96cce181ab0 deleted file mode 100644 index a4a43d940..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/2087b618b66e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/306106ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/306106ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/306106ac9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/30998716b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/30998716b66e001a173da96cce181ab0 deleted file mode 100644 index 937d2aa65..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/30998716b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/5080118a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/5080118a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/5080118a9571001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/c0d962519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/c0d962519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/c0d962519571001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/e104c4398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/e104c4398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/e104c4398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/f0bf2bcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/f0bf2bcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/f0bf2bcc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/10bc97e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/10bc97e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/10bc97e58f71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/2013083af06c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/2013083af06c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/2013083af06c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/206a38cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/206a38cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/206a38cc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/2171eb4e9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/2171eb4e9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/2171eb4e9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/30665acb9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/30665acb9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/30665acb9071001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/30a639ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/30a639ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/30a639ac9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/60b80bac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/60b80bac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/60b80bac9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/70f5baaa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/70f5baaa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/70f5baaa9071001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/8075bbab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/8075bbab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/8075bbab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/9022f58db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/9022f58db56e001a173da96cce181ab0 deleted file mode 100644 index b6e6616cd..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/9022f58db56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/90a152ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/90a152ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/90a152ab9071001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/a1e9208a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/a1e9208a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/a1e9208a9571001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/b00a128cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/b00a128cb56e001a173da96cce181ab0 deleted file mode 100644 index 460474bb5..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/b00a128cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/CommunicationTask.c \ -../Communication/Connection.c \ -../Communication/Container.c - -C_DEPS += \ -./Communication/CommunicationTask.d \ -./Communication/Connection.d \ -./Communication/Container.d - -OBJS += \ -./Communication/CommunicationTask.obj \ -./Communication/Connection.obj \ -./Communication/Container.obj - -OBJS__QUOTED += \ -"Communication\CommunicationTask.obj" \ -"Communication\Connection.obj" \ -"Communication\Container.obj" - -C_DEPS__QUOTED += \ -"Communication\CommunicationTask.d" \ -"Communication\Connection.d" \ -"Communication\Container.d" - -C_SRCS__QUOTED += \ -"../Communication/CommunicationTask.c" \ -"../Communication/Connection.c" \ -"../Communication/Container.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/c00784429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/c00784429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/c00784429b71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/d07f01e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/d07f01e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/d07f01e39a71001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/e062b0e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/e062b0e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/e062b0e78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/f0f4828cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/f0f4828cb56e001a173da96cce181ab0 deleted file mode 100644 index c909f2ae6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/f0f4828cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,410 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ -../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ -../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ -../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ -../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ -../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ -../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ -../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ -../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ -../Communication/PMR/Diagnostics/Event.pb-c.c \ -../Communication/PMR/Diagnostics/EventType.pb-c.c \ -../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ -../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ -../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ -../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ -../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ -../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ -../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ -../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ -../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ -../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ -../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ -../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ -../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ -../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ -../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ -../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ -../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ -../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ -../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ -../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ -../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ -../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ -../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ -../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ -../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ -../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ -../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ -../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ -../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ -../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ -../Communication/PMR/Diagnostics/ValveState.pb-c.c \ -../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ -../Communication/PMR/Diagnostics/ValveType.pb-c.c - -C_DEPS += \ -./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ -./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ -./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ -./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ -./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ -./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ -./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ -./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ -./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ -./Communication/PMR/Diagnostics/Event.pb-c.d \ -./Communication/PMR/Diagnostics/EventType.pb-c.d \ -./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ -./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ -./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ -./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ -./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ -./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ -./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ -./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ -./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ -./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ -./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ -./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ -./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ -./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ -./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ -./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ -./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ -./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ -./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ -./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ -./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ -./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ -./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ -./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ -./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ -./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ -./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ -./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ -./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ -./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ -./Communication/PMR/Diagnostics/ValveState.pb-c.d \ -./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ -./Communication/PMR/Diagnostics/ValveType.pb-c.d - -OBJS += \ -./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ -./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ -./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ -./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ -./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ -./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ -./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ -./Communication/PMR/Diagnostics/Event.pb-c.obj \ -./Communication/PMR/Diagnostics/EventType.pb-c.obj \ -./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ -./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ -./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ -./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ -./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ -./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ -./Communication/PMR/Diagnostics/ValveType.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ -"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ -"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ -"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ -"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ -"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ -"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ -"Communication\PMR\Diagnostics\Event.pb-c.obj" \ -"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ -"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ -"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ -"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ -"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ -"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ -"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ -"Communication\PMR\Diagnostics\ValveType.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ -"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ -"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ -"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ -"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ -"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ -"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ -"Communication\PMR\Diagnostics\Event.pb-c.d" \ -"Communication\PMR\Diagnostics\EventType.pb-c.d" \ -"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ -"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ -"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ -"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ -"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ -"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ -"Communication\PMR\Diagnostics\ValveType.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ -"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ -"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ -"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ -"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ -"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ -"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ -"../Communication/PMR/Diagnostics/Event.pb-c.c" \ -"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ -"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ -"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ -"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ -"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ -"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ -"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ -"../Communication/PMR/Diagnostics/ValveType.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/0041efa99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/0041efa99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/0041efa99071001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/21b3e49b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/21b3e49b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/21b3e49b8f71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/303aff16b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/303aff16b66e001a173da96cce181ab0 deleted file mode 100644 index 94e56c077..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/303aff16b66e001a173da96cce181ab0 +++ /dev/null @@ -1,146 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ -../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ -../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ -../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ -../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ -../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ -../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ -../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ -../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ -../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ -../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ -../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ -../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ -../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ -../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ -../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ -../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ -../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ -../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ -../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ -../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ -./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ -./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ -./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ -./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ -./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ -./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ -./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ -./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ -./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ -./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ -./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ -./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ -./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ -./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ -./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ -./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ -./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ -./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ -./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ -./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d - -OBJS += \ -./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ -./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ -./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ -./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ -./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ -./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ -./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ -./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ -./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ -./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ -./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ -./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ -./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ -./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ -./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ -./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ -./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ -./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ -./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ -./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ -./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ -"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ -"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ -"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ -"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ -"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ -"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ -"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ -"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ -"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ -"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ -"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ -"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ -"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ -"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ -"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ -"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ -"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ -"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ -"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ -"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ -"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ -"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ -"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ -"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ -"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ -"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ -"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ -"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ -"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ -"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/30a6b2acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/30a6b2acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index d8f8fc711..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/30a6b2acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/705e718b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/705e718b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/705e718b9571001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/70f6636e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/70f6636e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/70f6636e8771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/9040f08db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/9040f08db56e001a173da96cce181ab0 deleted file mode 100644 index 4448a628e..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/9040f08db56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/91c307b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/91c307b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/91c307b58771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/a08c5cab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/a08c5cab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/a08c5cab9071001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/e0196e6c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/e0196e6c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/e0196e6c8771001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/e08b4ae29a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/e08b4ae29a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/e08b4ae29a71001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/e0d90fb58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/e0d90fb58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/e0d90fb58771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/f021b48db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/f021b48db56e001a173da96cce181ab0 deleted file mode 100644 index 982770da7..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/f021b48db56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/f0bac1398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/f0bac1398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/f0bac1398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/10018cab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/10018cab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/10018cab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/103f659a8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/103f659a8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/103f659a8f71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/40f15e18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/40f15e18b66e001a173da96cce181ab0 deleted file mode 100644 index 431533061..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/40f15e18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/41ac188a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/41ac188a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/41ac188a9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/50ba55e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/50ba55e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/50ba55e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/50ba9e8cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/50ba9e8cb56e001a173da96cce181ab0 deleted file mode 100644 index fe052d491..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/50ba9e8cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,104 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ -../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ -../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ -../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ -../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ -../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ -../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ -../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ -../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ -../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ -../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ -../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ -../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ -../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ -./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ -./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ -./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ -./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ -./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ -./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ -./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ -./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ -./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ -./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ -./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ -./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ -./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d - -OBJS += \ -./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/90076718b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/90076718b66e001a173da96cce181ab0 deleted file mode 100644 index 1997a7dcc..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/90076718b66e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/d0117a419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/d0117a419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/d0117a419b71001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/e075c6398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/e075c6398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/e075c6398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/00d4c0cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/00d4c0cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/00d4c0cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/2071eb4e9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/2071eb4e9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/2071eb4e9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/2094ff8bb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/2094ff8bb56e001a173da96cce181ab0 deleted file mode 100644 index f0d60cd57..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/2094ff8bb56e001a173da96cce181ab0 +++ /dev/null @@ -1,43 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/30c8e2aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/30c8e2aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 94e56c077..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/30c8e2aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,146 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ -../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ -../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ -../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ -../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ -../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ -../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ -../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ -../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ -../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ -../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ -../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ -../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ -../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ -../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ -../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ -../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ -../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ -../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ -../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ -../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ -./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ -./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ -./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ -./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ -./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ -./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ -./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ -./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ -./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ -./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ -./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ -./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ -./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ -./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ -./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ -./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ -./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ -./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ -./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ -./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d - -OBJS += \ -./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ -./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ -./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ -./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ -./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ -./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ -./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ -./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ -./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ -./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ -./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ -./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ -./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ -./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ -./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ -./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ -./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ -./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ -./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ -./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ -./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ -"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ -"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ -"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ -"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ -"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ -"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ -"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ -"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ -"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ -"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ -"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ -"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ -"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ -"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ -"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ -"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ -"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ -"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ -"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ -"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ -"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ -"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ -"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ -"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ -"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ -"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ -"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ -"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ -"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ -"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ -"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ -"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/504e15398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/504e15398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/504e15398871001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/60cf30b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/60cf30b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/60cf30b58771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/70cf5dacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/70cf5dacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 6d62c79f6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/70cf5dacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/FPGA/FPGA.c \ -../Drivers/FPGA/FPGA_SPI_Comm.c \ -../Drivers/FPGA/FPGA_SSI_Comm.c - -C_DEPS += \ -./Drivers/FPGA/FPGA.d \ -./Drivers/FPGA/FPGA_SPI_Comm.d \ -./Drivers/FPGA/FPGA_SSI_Comm.d - -OBJS += \ -./Drivers/FPGA/FPGA.obj \ -./Drivers/FPGA/FPGA_SPI_Comm.obj \ -./Drivers/FPGA/FPGA_SSI_Comm.obj - -OBJS__QUOTED += \ -"Drivers\FPGA\FPGA.obj" \ -"Drivers\FPGA\FPGA_SPI_Comm.obj" \ -"Drivers\FPGA\FPGA_SSI_Comm.obj" - -C_DEPS__QUOTED += \ -"Drivers\FPGA\FPGA.d" \ -"Drivers\FPGA\FPGA_SPI_Comm.d" \ -"Drivers\FPGA\FPGA_SSI_Comm.d" - -C_SRCS__QUOTED += \ -"../Drivers/FPGA/FPGA.c" \ -"../Drivers/FPGA/FPGA_SPI_Comm.c" \ -"../Drivers/FPGA/FPGA_SSI_Comm.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/808947e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/808947e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/808947e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/b00ae06b8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/b00ae06b8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/b00ae06b8771001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/c064b9419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/c064b9419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/c064b9419b71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/e0b4ec6b8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/e0b4ec6b8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/e0b4ec6b8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/00cdd6cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/00cdd6cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/00cdd6cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/20c167e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/20c167e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/20c167e78f71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/4088fd509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/4088fd509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/4088fd509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/40c3cae39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/40c3cae39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/40c3cae39a71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60bcaf72126d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60bcaf72126d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60bcaf72126d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/80196e509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/80196e509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/80196e509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/80dd0f8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/80dd0f8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/80dd0f8b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/907d0ee78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/907d0ee78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/907d0ee78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/9094d6429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/9094d6429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/9094d6429b71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/909829b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/909829b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/909829b48771001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/b03840b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/b03840b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/b03840b58771001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/b0babf8db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/b0babf8db56e001a173da96cce181ab0 deleted file mode 100644 index 10e0deef0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/b0babf8db56e001a173da96cce181ab0 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/c0d0bd8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/c0d0bd8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/c0d0bd8b9571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/c147ba9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/c147ba9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/c147ba9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/f0683a8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/f0683a8eb56e001a173da96cce181ab0 deleted file mode 100644 index 1e323df70..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/f0683a8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/116948509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/116948509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/116948509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/30d210aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/30d210aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 811c046a3..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/30d210aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/80fb7bab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/80fb7bab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/80fb7bab9071001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/c0fc05aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/c0fc05aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index ed806ae47..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/c0fc05aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/e01227adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/e01227adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 7e6705062..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/e01227adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/AlarmHandling/AlarmHandling.c - -C_DEPS += \ -./Modules/AlarmHandling/AlarmHandling.d - -OBJS += \ -./Modules/AlarmHandling/AlarmHandling.obj - -OBJS__QUOTED += \ -"Modules\AlarmHandling\AlarmHandling.obj" - -C_DEPS__QUOTED += \ -"Modules\AlarmHandling\AlarmHandling.d" - -C_SRCS__QUOTED += \ -"../Modules/AlarmHandling/AlarmHandling.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/201049e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/201049e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/201049e39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/3055159b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/3055159b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/3055159b8f71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/40058aab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/40058aab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/40058aab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/506c6d6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/506c6d6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/506c6d6e8771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/60c6266e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/60c6266e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/60c6266e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/80b73a9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/80b73a9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/80b73a9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/00f48218b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/00f48218b66e001a173da96cce181ab0 deleted file mode 100644 index cfddce1c5..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/00f48218b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/119b606e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/119b606e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/119b606e8771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/200a87419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/200a87419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/200a87419b71001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/6055f1b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/6055f1b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/6055f1b48771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/90f4fb18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/90f4fb18b66e001a173da96cce181ab0 deleted file mode 100644 index a1c19fe3c..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/90f4fb18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/b04f33429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/b04f33429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/b04f33429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/b107b0398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/b107b0398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/b107b0398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/c0eba1c6f16c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/c0eba1c6f16c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/c0eba1c6f16c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/f05e52e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/f05e52e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/f05e52e39a71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/0037f1e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/0037f1e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/0037f1e39a71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/306d7e509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/306d7e509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/306d7e509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/4172413a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/4172413a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/4172413a8871001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/60d58eadb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/60d58eadb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 0b34bf49e..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/60d58eadb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,43 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/809c6c8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/809c6c8eb56e001a173da96cce181ab0 deleted file mode 100644 index 42f679a53..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/809c6c8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/b00146acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/b00146acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 2599fb3d4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/b00146acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,722 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/e0cac5aa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/e0cac5aa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/e0cac5aa9071001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/f003f0e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/f003f0e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8b/f003f0e78f71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/1039236d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/1039236d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/1039236d8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/10eb0d18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/10eb0d18b66e001a173da96cce181ab0 deleted file mode 100644 index cd2f2e099..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/10eb0d18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/3062523a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/3062523a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/3062523a8871001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/3079aa18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/3079aa18b66e001a173da96cce181ab0 deleted file mode 100644 index 4d3f2c36e..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/3079aa18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/Modbus/modbus-data.obj: ../Drivers/Uart_Comm/Modbus/modbus-data.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/modbus-data.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Uart_Comm/Modbus/modbus-rtu.obj: ../Drivers/Uart_Comm/Modbus/modbus-rtu.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/modbus-rtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Uart_Comm/Modbus/modbus-tcp.obj: ../Drivers/Uart_Comm/Modbus/modbus-tcp.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/modbus-tcp.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Uart_Comm/Modbus/modbus.obj: ../Drivers/Uart_Comm/Modbus/modbus.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/modbus.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/60112138f56c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/60112138f56c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/60112138f56c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/708215e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/708215e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/708215e78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/712bb88b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/712bb88b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/712bb88b9571001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/b06399aa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/b06399aa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/b06399aa9071001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/c1105b9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/c1105b9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/c1105b9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/f0beae18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/f0beae18b66e001a173da96cce181ab0 deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/f0beae18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/00a65aadb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/00a65aadb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 6ced92348..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/00a65aadb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,56 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/IDS/IDS_BIT.c \ -../Modules/IDS/IDS_Cleaning.c \ -../Modules/IDS/IDS_dispenser.c \ -../Modules/IDS/IDS_init.c \ -../Modules/IDS/IDS_maint.c \ -../Modules/IDS/IDS_print.c - -C_DEPS += \ -./Modules/IDS/IDS_BIT.d \ -./Modules/IDS/IDS_Cleaning.d \ -./Modules/IDS/IDS_dispenser.d \ -./Modules/IDS/IDS_init.d \ -./Modules/IDS/IDS_maint.d \ -./Modules/IDS/IDS_print.d - -OBJS += \ -./Modules/IDS/IDS_BIT.obj \ -./Modules/IDS/IDS_Cleaning.obj \ -./Modules/IDS/IDS_dispenser.obj \ -./Modules/IDS/IDS_init.obj \ -./Modules/IDS/IDS_maint.obj \ -./Modules/IDS/IDS_print.obj - -OBJS__QUOTED += \ -"Modules\IDS\IDS_BIT.obj" \ -"Modules\IDS\IDS_Cleaning.obj" \ -"Modules\IDS\IDS_dispenser.obj" \ -"Modules\IDS\IDS_init.obj" \ -"Modules\IDS\IDS_maint.obj" \ -"Modules\IDS\IDS_print.obj" - -C_DEPS__QUOTED += \ -"Modules\IDS\IDS_BIT.d" \ -"Modules\IDS\IDS_Cleaning.d" \ -"Modules\IDS\IDS_dispenser.d" \ -"Modules\IDS\IDS_init.d" \ -"Modules\IDS\IDS_maint.d" \ -"Modules\IDS\IDS_print.d" - -C_SRCS__QUOTED += \ -"../Modules/IDS/IDS_BIT.c" \ -"../Modules/IDS/IDS_Cleaning.c" \ -"../Modules/IDS/IDS_dispenser.c" \ -"../Modules/IDS/IDS_init.c" \ -"../Modules/IDS/IDS_maint.c" \ -"../Modules/IDS/IDS_print.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/20670d6d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/20670d6d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/20670d6d8771001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/704fad9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/704fad9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/704fad9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/80b92e18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/80b92e18b66e001a173da96cce181ab0 deleted file mode 100644 index 368691401..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/80b92e18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Heater/ADS1220.c \ -../Drivers/Heater/Heater.c \ -../Drivers/Heater/TemperatureSensor.c - -C_DEPS += \ -./Drivers/Heater/ADS1220.d \ -./Drivers/Heater/Heater.d \ -./Drivers/Heater/TemperatureSensor.d - -OBJS += \ -./Drivers/Heater/ADS1220.obj \ -./Drivers/Heater/Heater.obj \ -./Drivers/Heater/TemperatureSensor.obj - -OBJS__QUOTED += \ -"Drivers\Heater\ADS1220.obj" \ -"Drivers\Heater\Heater.obj" \ -"Drivers\Heater\TemperatureSensor.obj" - -C_DEPS__QUOTED += \ -"Drivers\Heater\ADS1220.d" \ -"Drivers\Heater\Heater.d" \ -"Drivers\Heater\TemperatureSensor.d" - -C_SRCS__QUOTED += \ -"../Drivers/Heater/ADS1220.c" \ -"../Drivers/Heater/Heater.c" \ -"../Drivers/Heater/TemperatureSensor.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/904ad3cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/904ad3cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/904ad3cc9071001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/c047e7cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/c047e7cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/c047e7cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/c0f03be39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/c0f03be39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/c0f03be39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/f0272a429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/f0272a429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/f0272a429b71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/408501e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/408501e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/408501e78f71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/501cdc8db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/501cdc8db56e001a173da96cce181ab0 deleted file mode 100644 index 5c32f02ce..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/501cdc8db56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c - -C_DEPS += \ -./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d - -OBJS += \ -./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/606f71e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/606f71e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/606f71e58f71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/7020128eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/7020128eb56e001a173da96cce181ab0 deleted file mode 100644 index 3a2873b0a..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/7020128eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Thermo_K/MCP9600.c - -C_DEPS += \ -./Drivers/I2C_Communication/Thermo_K/MCP9600.d - -OBJS += \ -./Drivers/I2C_Communication/Thermo_K/MCP9600.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Thermo_K\MCP9600.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/70db3455d66c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/70db3455d66c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/70db3455d66c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/8126a16e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/8126a16e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/8126a16e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/903d47b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/903d47b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/903d47b58771001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/90b001adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/90b001adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index f57d10d43..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/90b001adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/90b21ae78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/90b21ae78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/90b21ae78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/b00ef76e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/b00ef76e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/b00ef76e8771001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/b0128718b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/b0128718b66e001a173da96cce181ab0 deleted file mode 100644 index d1cc8c142..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/b0128718b66e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/b0309fe19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/b0309fe19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/b0309fe19a71001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/b040c6e19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/b040c6e19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/b040c6e19a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/c048f16b8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/c048f16b8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/c048f16b8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/c0b709e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/c0b709e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/c0b709e68f71001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/0043896c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/0043896c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/0043896c8771001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/10a3b3e19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/10a3b3e19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/10a3b3e19a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/202c32ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/202c32ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/202c32ac9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/206f12ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/206f12ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/206f12ac9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/3080b1e19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/3080b1e19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/3080b1e19a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/309cf5398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/309cf5398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/309cf5398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/30e478429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/30e478429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/30e478429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/40da4d18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/40da4d18b66e001a173da96cce181ab0 deleted file mode 100644 index fa007a15a..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/40da4d18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/50b6f8a9b06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/50b6f8a9b06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 5bbe9efe0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/50b6f8a9b06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -build-306001487: - @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc - -build-306001487-inproc: ../Embedded.cfg - @echo 'Building file: $<' - @echo 'Invoking: XDCtools' - "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" - @echo 'Finished building: $<' - @echo ' ' - -configPkg/linker.cmd: build-306001487 ../Embedded.cfg -configPkg/compiler.opt: build-306001487 -configPkg/: build-306001487 - -Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/a0e02420f06c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/a0e02420f06c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/a0e02420f06c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/a0f344b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/a0f344b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/a0f344b58771001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/c06c178db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/c06c178db56e001a173da96cce181ab0 deleted file mode 100644 index c16845ede..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/c06c178db56e001a173da96cce181ab0 +++ /dev/null @@ -1,183 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/f073caacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/f073caacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index f802ef559..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/f073caacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ -../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c - -C_DEPS += \ -./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ -./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d - -OBJS += \ -./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ -./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ -"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ -"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ -"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/00652a6d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/00652a6d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/00652a6d8771001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/10c62818b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/10c62818b66e001a173da96cce181ab0 deleted file mode 100644 index 45308d60d..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/10c62818b66e001a173da96cce181ab0 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/10eb1be78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/10eb1be78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/10eb1be78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/70ad39419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/70ad39419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/70ad39419b71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/70f7af18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/70f7af18b66e001a173da96cce181ab0 deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/70f7af18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/d09414b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/d09414b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/d09414b58771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/f0289e8db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/f0289e8db56e001a173da96cce181ab0 deleted file mode 100644 index 071c9375d..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/f0289e8db56e001a173da96cce181ab0 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/ADC_Sampling/ADC.c \ -../Drivers/ADC_Sampling/ADC_VAC.c \ -../Drivers/ADC_Sampling/ADC_VOC_Sensor.c - -C_DEPS += \ -./Drivers/ADC_Sampling/ADC.d \ -./Drivers/ADC_Sampling/ADC_VAC.d \ -./Drivers/ADC_Sampling/ADC_VOC_Sensor.d - -OBJS += \ -./Drivers/ADC_Sampling/ADC.obj \ -./Drivers/ADC_Sampling/ADC_VAC.obj \ -./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj - -OBJS__QUOTED += \ -"Drivers\ADC_Sampling\ADC.obj" \ -"Drivers\ADC_Sampling\ADC_VAC.obj" \ -"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" - -C_DEPS__QUOTED += \ -"Drivers\ADC_Sampling\ADC.d" \ -"Drivers\ADC_Sampling\ADC_VAC.d" \ -"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" - -C_SRCS__QUOTED += \ -"../Drivers/ADC_Sampling/ADC.c" \ -"../Drivers/ADC_Sampling/ADC_VAC.c" \ -"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/10ec5c8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/10ec5c8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/10ec5c8b9571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/1139236d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/1139236d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/1139236d8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/50361429c36e001a17dd93e105fd0cb6 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/50361429c36e001a17dd93e105fd0cb6 deleted file mode 100644 index be7c1326a..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/50361429c36e001a17dd93e105fd0cb6 +++ /dev/null @@ -1,411 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -/* ----------------------- System includes ----------------------------------*/ -#include "stdlib.h" -#include "string.h" - -/* ----------------------- Platform includes --------------------------------*/ -#include "port.h" - -/* ----------------------- Modbus includes ----------------------------------*/ -#include "mb.h" -#include "mbconfig.h" -#include "mbframe.h" -#include "mbproto.h" -#include "mbfunc.h" - -#include "mbport.h" -#if MB_RTU_ENABLED == 1 -#include "mbrtu.h" -#endif -#if MB_ASCII_ENABLED == 1 -#include "mbascii.h" -#endif -#if MB_TCP_ENABLED == 1 -#include "mbtcp.h" -#endif - -#ifndef MB_PORT_HAS_CLOSE -#define MB_PORT_HAS_CLOSE 0 -#endif - -/* ----------------------- Static variables ---------------------------------*/ - -static UCHAR ucMBAddress; -static eMBMode eMBCurrentMode; - -static enum -{ - STATE_ENABLED, - STATE_DISABLED, - STATE_NOT_INITIALIZED -} eMBState = STATE_NOT_INITIALIZED; - -/* Functions pointer which are initialized in eMBInit( ). Depending on the - * mode (RTU or ASCII) the are set to the correct implementations. - */ -static peMBFrameSend peMBFrameSendCur; -static pvMBFrameStart pvMBFrameStartCur; -static pvMBFrameStop pvMBFrameStopCur; -static peMBFrameReceive peMBFrameReceiveCur; -static pvMBFrameClose pvMBFrameCloseCur; - -/* Callback functions required by the porting layer. They are called when - * an external event has happend which includes a timeout or the reception - * or transmission of a character. - */ -BOOL( *pxMBFrameCBByteReceived ) ( void ); -BOOL( *pxMBFrameCBTransmitterEmpty ) ( void ); -BOOL( *pxMBPortCBTimerExpired ) ( void ); - -BOOL( *pxMBFrameCBReceiveFSMCur ) ( void ); -BOOL( *pxMBFrameCBTransmitFSMCur ) ( void ); - -/* An array of Modbus functions handlers which associates Modbus function - * codes with implementing functions. - */ -static xMBFunctionHandler xFuncHandlers[MB_FUNC_HANDLERS_MAX] = { -#if MB_FUNC_OTHER_REP_SLAVEID_ENABLED > 0 - {MB_FUNC_OTHER_REPORT_SLAVEID, eMBFuncReportSlaveID}, -#endif -#if MB_FUNC_READ_INPUT_ENABLED > 0 - {MB_FUNC_READ_INPUT_REGISTER, eMBFuncReadInputRegister}, -#endif -#if MB_FUNC_READ_HOLDING_ENABLED > 0 - {MB_FUNC_READ_HOLDING_REGISTER, eMBFuncReadHoldingRegister}, -#endif -#if MB_FUNC_WRITE_MULTIPLE_HOLDING_ENABLED > 0 - {MB_FUNC_WRITE_MULTIPLE_REGISTERS, eMBFuncWriteMultipleHoldingRegister}, -#endif -#if MB_FUNC_WRITE_HOLDING_ENABLED > 0 - {MB_FUNC_WRITE_REGISTER, eMBFuncWriteHoldingRegister}, -#endif -#if MB_FUNC_READWRITE_HOLDING_ENABLED > 0 - {MB_FUNC_READWRITE_MULTIPLE_REGISTERS, eMBFuncReadWriteMultipleHoldingRegister}, -#endif -#if MB_FUNC_READ_COILS_ENABLED > 0 - {MB_FUNC_READ_COILS, eMBFuncReadCoils}, -#endif -#if MB_FUNC_WRITE_COIL_ENABLED > 0 - {MB_FUNC_WRITE_SINGLE_COIL, eMBFuncWriteCoil}, -#endif -#if MB_FUNC_WRITE_MULTIPLE_COILS_ENABLED > 0 - {MB_FUNC_WRITE_MULTIPLE_COILS, eMBFuncWriteMultipleCoils}, -#endif -#if MB_FUNC_READ_DISCRETE_INPUTS_ENABLED > 0 - {MB_FUNC_READ_DISCRETE_INPUTS, eMBFuncReadDiscreteInputs}, -#endif -}; - -/* ----------------------- Start implementation -----------------------------*/ -eMBErrorCode -eMBInit( eMBMode eMode, UCHAR ucSlaveAddress, UCHAR ucPort, ULONG ulBaudRate, eMBParity eParity ) -{ - eMBErrorCode eStatus = MB_ENOERR; - - /* check preconditions */ - if( ( ucSlaveAddress == MB_ADDRESS_BROADCAST ) || - ( ucSlaveAddress < MB_ADDRESS_MIN ) || ( ucSlaveAddress > MB_ADDRESS_MAX ) ) - { - eStatus = MB_EINVAL; - } - else - { - ucMBAddress = ucSlaveAddress; - - switch ( eMode ) - { -#if MB_RTU_ENABLED > 0 - case MB_RTU: - pvMBFrameStartCur = eMBRTUStart; - pvMBFrameStopCur = eMBRTUStop; - peMBFrameSendCur = eMBRTUSend; - peMBFrameReceiveCur = eMBRTUReceive; - pvMBFrameCloseCur = MB_PORT_HAS_CLOSE ? vMBPortClose : NULL; - pxMBFrameCBByteReceived = xMBRTUReceiveFSM; - pxMBFrameCBTransmitterEmpty = xMBRTUTransmitFSM; - pxMBPortCBTimerExpired = xMBRTUTimerT35Expired; - - eStatus = eMBRTUInit( ucMBAddress, ucPort, ulBaudRate, eParity ); - break; -#endif -#if MB_ASCII_ENABLED > 0 - case MB_ASCII: - pvMBFrameStartCur = eMBASCIIStart; - pvMBFrameStopCur = eMBASCIIStop; - peMBFrameSendCur = eMBASCIISend; - peMBFrameReceiveCur = eMBASCIIReceive; - pvMBFrameCloseCur = MB_PORT_HAS_CLOSE ? vMBPortClose : NULL; - pxMBFrameCBByteReceived = xMBASCIIReceiveFSM; - pxMBFrameCBTransmitterEmpty = xMBASCIITransmitFSM; - pxMBPortCBTimerExpired = xMBASCIITimerT1SExpired; - - eStatus = eMBASCIIInit( ucMBAddress, ucPort, ulBaudRate, eParity ); - break; -#endif - default: - eStatus = MB_EINVAL; - } - - if( eStatus == MB_ENOERR ) - { - if( !xMBPortEventInit( ) ) - { - /* port dependent event module initalization failed. */ - eStatus = MB_EPORTERR; - } - else - { - eMBCurrentMode = eMode; - eMBState = STATE_DISABLED; - } - } - } - return eStatus; -} - -#if MB_TCP_ENABLED > 0 -eMBErrorCode -eMBTCPInit( USHORT ucTCPPort ) -{ - eMBErrorCode eStatus = MB_ENOERR; - - if( ( eStatus = eMBTCPDoInit( ucTCPPort ) ) != MB_ENOERR ) - { - eMBState = STATE_DISABLED; - } - else if( !xMBPortEventInit( ) ) - { - /* Port dependent event module initalization failed. */ - eStatus = MB_EPORTERR; - } - else - { - pvMBFrameStartCur = eMBTCPStart; - pvMBFrameStopCur = eMBTCPStop; - peMBFrameReceiveCur = eMBTCPReceive; - peMBFrameSendCur = eMBTCPSend; - pvMBFrameCloseCur = MB_PORT_HAS_CLOSE ? vMBTCPPortClose : NULL; - ucMBAddress = MB_TCP_PSEUDO_ADDRESS; - eMBCurrentMode = MB_TCP; - eMBState = STATE_DISABLED; - } - return eStatus; -} -#endif - -eMBErrorCode -eMBRegisterCB( UCHAR ucFunctionCode, pxMBFunctionHandler pxHandler ) -{ - int i; - eMBErrorCode eStatus; - - if( ( 0 < ucFunctionCode ) && ( ucFunctionCode <= 127 ) ) - { - ENTER_CRITICAL_SECTION( ); - if( pxHandler != NULL ) - { - for( i = 0; i < MB_FUNC_HANDLERS_MAX; i++ ) - { - if( ( xFuncHandlers[i].pxHandler == NULL ) || - ( xFuncHandlers[i].pxHandler == pxHandler ) ) - { - xFuncHandlers[i].ucFunctionCode = ucFunctionCode; - xFuncHandlers[i].pxHandler = pxHandler; - break; - } - } - eStatus = ( i != MB_FUNC_HANDLERS_MAX ) ? MB_ENOERR : MB_ENORES; - } - else - { - for( i = 0; i < MB_FUNC_HANDLERS_MAX; i++ ) - { - if( xFuncHandlers[i].ucFunctionCode == ucFunctionCode ) - { - xFuncHandlers[i].ucFunctionCode = 0; - xFuncHandlers[i].pxHandler = NULL; - break; - } - } - /* Remove can't fail. */ - eStatus = MB_ENOERR; - } - EXIT_CRITICAL_SECTION( ); - } - else - { - eStatus = MB_EINVAL; - } - return eStatus; -} - - -eMBErrorCode -eMBClose( void ) -{ - eMBErrorCode eStatus = MB_ENOERR; - - if( eMBState == STATE_DISABLED ) - { - if( pvMBFrameCloseCur != NULL ) - { - pvMBFrameCloseCur( ); - } - } - else - { - eStatus = MB_EILLSTATE; - } - return eStatus; -} - -eMBErrorCode -eMBEnable( void ) -{ - eMBErrorCode eStatus = MB_ENOERR; - - if( eMBState == STATE_DISABLED ) - { - /* Activate the protocol stack. */ - pvMBFrameStartCur( ); - eMBState = STATE_ENABLED; - } - else - { - eStatus = MB_EILLSTATE; - } - return eStatus; -} - -eMBErrorCode -eMBDisable( void ) -{ - eMBErrorCode eStatus; - - if( eMBState == STATE_ENABLED ) - { - pvMBFrameStopCur( ); - eMBState = STATE_DISABLED; - eStatus = MB_ENOERR; - } - else if( eMBState == STATE_DISABLED ) - { - eStatus = MB_ENOERR; - } - else - { - eStatus = MB_EILLSTATE; - } - return eStatus; -} - -eMBErrorCode -eMBPoll( void ) -{ - static UCHAR *ucMBFrame; - static UCHAR ucRcvAddress; - static UCHAR ucFunctionCode; - static USHORT usLength; - static eMBException eException; - - int i; - eMBErrorCode eStatus = MB_ENOERR; - eMBEventType eEvent; - - /* Check if the protocol stack is ready. */ - if( eMBState != STATE_ENABLED ) - { - return MB_EILLSTATE; - } - - /* Check if there is a event available. If not return control to caller. - * Otherwise we will handle the event. */ - if( xMBPortEventGet( &eEvent ) == TRUE ) - { - switch ( eEvent ) - { - case EV_READY: - break; - - case EV_FRAME_RECEIVED: - eStatus = peMBFrameReceiveCur( &ucRcvAddress, &ucMBFrame, &usLength ); - if( eStatus == MB_ENOERR ) - { - /* Check if the frame is for us. If not ignore the frame. */ - if( ( ucRcvAddress == ucMBAddress ) || ( ucRcvAddress == MB_ADDRESS_BROADCAST ) ) - { - ( void )xMBPortEventPost( EV_EXECUTE ); - } - } - break; - - case EV_EXECUTE: - ucFunctionCode = ucMBFrame[MB_PDU_FUNC_OFF]; - eException = MB_EX_ILLEGAL_FUNCTION; - for( i = 0; i < MB_FUNC_HANDLERS_MAX; i++ ) - { - /* No more function handlers registered. Abort. */ - if( xFuncHandlers[i].ucFunctionCode == 0 ) - { - break; - } - else if( xFuncHandlers[i].ucFunctionCode == ucFunctionCode ) - { - eException = xFuncHandlers[i].pxHandler( ucMBFrame, &usLength ); - break; - } - } - - /* If the request was not sent to the broadcast address we - * return a reply. */ - if( ucRcvAddress != MB_ADDRESS_BROADCAST ) - { - if( eException != MB_EX_NONE ) - { - /* An exception occured. Build an error frame. */ - usLength = 0; - ucMBFrame[usLength++] = ( UCHAR )( ucFunctionCode | MB_FUNC_ERROR ); - ucMBFrame[usLength++] = eException; - } - if( ( eMBCurrentMode == MB_ASCII ) && MB_ASCII_TIMEOUT_WAIT_BEFORE_SEND_MS ) - { - vMBPortTimersDelay( MB_ASCII_TIMEOUT_WAIT_BEFORE_SEND_MS ); - } - eStatus = peMBFrameSendCur( ucMBAddress, ucMBFrame, usLength ); - } - break; - - case EV_FRAME_SENT: - break; - } - } - return MB_ENOERR; -} diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/6020d98bb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/6020d98bb56e001a173da96cce181ab0 deleted file mode 100644 index 5bbe9efe0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/6020d98bb56e001a173da96cce181ab0 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -build-306001487: - @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc - -build-306001487-inproc: ../Embedded.cfg - @echo 'Building file: $<' - @echo 'Invoking: XDCtools' - "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" - @echo 'Finished building: $<' - @echo ' ' - -configPkg/linker.cmd: build-306001487 ../Embedded.cfg -configPkg/compiler.opt: build-306001487 -configPkg/: build-306001487 - -Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/608a788b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/608a788b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/608a788b9571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/70e9e9e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/70e9e9e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/70e9e9e78f71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/803a66e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/803a66e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/803a66e78f71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/80b54e519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/80b54e519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/80b54e519571001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/a04fbc6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/a04fbc6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/a04fbc6e8771001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/b0a0808b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/b0a0808b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/b0a0808b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/b0f0aa429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/b0f0aa429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/b0f0aa429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/c04a2de39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/c04a2de39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/c04a2de39a71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/e0492b8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/e0492b8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/e0492b8a9571001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/004807cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/004807cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/004807cc9071001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/206f1aaab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/206f1aaab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index ec3f0b835..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/206f1aaab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/protobuf-c/protobuf-c.c - -C_DEPS += \ -./Common/protobuf-c/protobuf-c.d - -OBJS += \ -./Common/protobuf-c/protobuf-c.obj - -OBJS__QUOTED += \ -"Common\protobuf-c\protobuf-c.obj" - -C_DEPS__QUOTED += \ -"Common\protobuf-c\protobuf-c.d" - -C_SRCS__QUOTED += \ -"../Common/protobuf-c/protobuf-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/20b8d5398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/20b8d5398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/20b8d5398871001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/41feb3b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/41feb3b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/41feb3b48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/81fe1a3a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/81fe1a3a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/81fe1a3a8871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/900d4d8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/900d4d8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/900d4d8b9571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/9016e5388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/9016e5388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/9016e5388871001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/b0287eacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/b0287eacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 45308d60d..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/b0287eacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/d029b6e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/d029b6e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/d029b6e39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/d15117519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/d15117519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/d15117519571001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/d198ed6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/d198ed6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/d198ed6e8771001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/e09859b7c06e001a17dd93e105fd0cb6 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/e09859b7c06e001a17dd93e105fd0cb6 deleted file mode 100644 index 3974b3e68..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/e09859b7c06e001a17dd93e105fd0cb6 +++ /dev/null @@ -1,307 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -/* ----------------------- System includes ----------------------------------*/ -#include "stdlib.h" -#include "string.h" - -/* ----------------------- Platform includes --------------------------------*/ -#include "port.h" - -/* ----------------------- Modbus includes ----------------------------------*/ -#include "mb.h" -#include "mbframe.h" -#include "mbproto.h" -#include "mbconfig.h" - -/* ----------------------- Defines ------------------------------------------*/ -#define MB_PDU_FUNC_READ_ADDR_OFF ( MB_PDU_DATA_OFF + 0) -#define MB_PDU_FUNC_READ_REGCNT_OFF ( MB_PDU_DATA_OFF + 2 ) -#define MB_PDU_FUNC_READ_SIZE ( 4 ) -#define MB_PDU_FUNC_READ_REGCNT_MAX ( 0x007D ) - -#define MB_PDU_FUNC_WRITE_ADDR_OFF ( MB_PDU_DATA_OFF + 0) -#define MB_PDU_FUNC_WRITE_VALUE_OFF ( MB_PDU_DATA_OFF + 2 ) -#define MB_PDU_FUNC_WRITE_SIZE ( 4 ) - -#define MB_PDU_FUNC_WRITE_MUL_ADDR_OFF ( MB_PDU_DATA_OFF + 0 ) -#define MB_PDU_FUNC_WRITE_MUL_REGCNT_OFF ( MB_PDU_DATA_OFF + 2 ) -#define MB_PDU_FUNC_WRITE_MUL_BYTECNT_OFF ( MB_PDU_DATA_OFF + 4 ) -#define MB_PDU_FUNC_WRITE_MUL_VALUES_OFF ( MB_PDU_DATA_OFF + 5 ) -#define MB_PDU_FUNC_WRITE_MUL_SIZE_MIN ( 5 ) -#define MB_PDU_FUNC_WRITE_MUL_REGCNT_MAX ( 0x0078 ) - -#define MB_PDU_FUNC_READWRITE_READ_ADDR_OFF ( MB_PDU_DATA_OFF + 0 ) -#define MB_PDU_FUNC_READWRITE_READ_REGCNT_OFF ( MB_PDU_DATA_OFF + 2 ) -#define MB_PDU_FUNC_READWRITE_WRITE_ADDR_OFF ( MB_PDU_DATA_OFF + 4 ) -#define MB_PDU_FUNC_READWRITE_WRITE_REGCNT_OFF ( MB_PDU_DATA_OFF + 6 ) -#define MB_PDU_FUNC_READWRITE_BYTECNT_OFF ( MB_PDU_DATA_OFF + 8 ) -#define MB_PDU_FUNC_READWRITE_WRITE_VALUES_OFF ( MB_PDU_DATA_OFF + 9 ) -#define MB_PDU_FUNC_READWRITE_SIZE_MIN ( 9 ) - -/* ----------------------- Static functions ---------------------------------*/ -eMBException prveMBError2Exception( eMBErrorCode eErrorCode ); - -/* ----------------------- Start implementation -----------------------------*/ - -#if MB_FUNC_WRITE_HOLDING_ENABLED > 0 - -eMBException -eMBFuncWriteHoldingRegister( UCHAR * pucFrame, USHORT * usLen ) -{ - USHORT usRegAddress; - eMBException eStatus = MB_EX_NONE; - eMBErrorCode eRegStatus; - - if( *usLen == ( MB_PDU_FUNC_WRITE_SIZE + MB_PDU_SIZE_MIN ) ) - { - usRegAddress = ( USHORT )( pucFrame[MB_PDU_FUNC_WRITE_ADDR_OFF] << 8 ); - usRegAddress |= ( USHORT )( pucFrame[MB_PDU_FUNC_WRITE_ADDR_OFF + 1] ); - usRegAddress++; - - /* Make callback to update the value. */ - eRegStatus = eMBRegHoldingCB( &pucFrame[MB_PDU_FUNC_WRITE_VALUE_OFF], - usRegAddress, 1, MB_REG_WRITE ); - - /* If an error occured convert it into a Modbus exception. */ - if( eRegStatus != MB_ENOERR ) - { - eStatus = prveMBError2Exception( eRegStatus ); - } - } - else - { - /* Can't be a valid request because the length is incorrect. */ - eStatus = MB_EX_ILLEGAL_DATA_VALUE; - } - return eStatus; -} -#endif - -#if MB_FUNC_WRITE_MULTIPLE_HOLDING_ENABLED > 0 -eMBException -eMBFuncWriteMultipleHoldingRegister( UCHAR * pucFrame, USHORT * usLen ) -{ - USHORT usRegAddress; - USHORT usRegCount; - UCHAR ucRegByteCount; - - eMBException eStatus = MB_EX_NONE; - eMBErrorCode eRegStatus; - - if( *usLen >= ( MB_PDU_FUNC_WRITE_MUL_SIZE_MIN + MB_PDU_SIZE_MIN ) ) - { - usRegAddress = ( USHORT )( pucFrame[MB_PDU_FUNC_WRITE_MUL_ADDR_OFF] << 8 ); - usRegAddress |= ( USHORT )( pucFrame[MB_PDU_FUNC_WRITE_MUL_ADDR_OFF + 1] ); - usRegAddress++; - - usRegCount = ( USHORT )( pucFrame[MB_PDU_FUNC_WRITE_MUL_REGCNT_OFF] << 8 ); - usRegCount |= ( USHORT )( pucFrame[MB_PDU_FUNC_WRITE_MUL_REGCNT_OFF + 1] ); - - ucRegByteCount = pucFrame[MB_PDU_FUNC_WRITE_MUL_BYTECNT_OFF]; - - if( ( usRegCount >= 1 ) && - ( usRegCount <= MB_PDU_FUNC_WRITE_MUL_REGCNT_MAX ) && - ( ucRegByteCount == ( UCHAR ) ( 2 * usRegCount ) ) ) - { - /* Make callback to update the register values. */ - eRegStatus = - eMBRegHoldingCB( &pucFrame[MB_PDU_FUNC_WRITE_MUL_VALUES_OFF], - usRegAddress, usRegCount, MB_REG_WRITE ); - - /* If an error occured convert it into a Modbus exception. */ - if( eRegStatus != MB_ENOERR ) - { - eStatus = prveMBError2Exception( eRegStatus ); - } - else - { - /* The response contains the function code, the starting - * address and the quantity of registers. We reuse the - * old values in the buffer because they are still valid. - */ - *usLen = MB_PDU_FUNC_WRITE_MUL_BYTECNT_OFF; - } - } - else - { - eStatus = MB_EX_ILLEGAL_DATA_VALUE; - } - } - else - { - /* Can't be a valid request because the length is incorrect. */ - eStatus = MB_EX_ILLEGAL_DATA_VALUE; - } - return eStatus; -} -#endif - -#if MB_FUNC_READ_HOLDING_ENABLED > 0 - -eMBException -eMBFuncReadHoldingRegister( UCHAR * pucFrame, USHORT * usLen ) -{ - USHORT usRegAddress; - USHORT usRegCount; - UCHAR *pucFrameCur; - - eMBException eStatus = MB_EX_NONE; - eMBErrorCode eRegStatus; - - if( *usLen == ( MB_PDU_FUNC_READ_SIZE + MB_PDU_SIZE_MIN ) ) - { - usRegAddress = ( USHORT )( pucFrame[MB_PDU_FUNC_READ_ADDR_OFF] << 8 ); - usRegAddress |= ( USHORT )( pucFrame[MB_PDU_FUNC_READ_ADDR_OFF + 1] ); - usRegAddress++; - - usRegCount = ( USHORT )( pucFrame[MB_PDU_FUNC_READ_REGCNT_OFF] << 8 ); - usRegCount = ( USHORT )( pucFrame[MB_PDU_FUNC_READ_REGCNT_OFF + 1] ); - - /* Check if the number of registers to read is valid. If not - * return Modbus illegal data value exception. - */ - if( ( usRegCount >= 1 ) && ( usRegCount <= MB_PDU_FUNC_READ_REGCNT_MAX ) ) - { - /* Set the current PDU data pointer to the beginning. */ - pucFrameCur = &pucFrame[MB_PDU_FUNC_OFF]; - *usLen = MB_PDU_FUNC_OFF; - - /* First byte contains the function code. */ - *pucFrameCur++ = MB_FUNC_READ_HOLDING_REGISTER; - *usLen += 1; - - /* Second byte in the response contain the number of bytes. */ - *pucFrameCur++ = ( UCHAR ) ( usRegCount * 2 ); - *usLen += 1; - - /* Make callback to fill the buffer. */ - eRegStatus = eMBRegHoldingCB( pucFrameCur, usRegAddress, usRegCount, MB_REG_READ ); - /* If an error occured convert it into a Modbus exception. */ - if( eRegStatus != MB_ENOERR ) - { - eStatus = prveMBError2Exception( eRegStatus ); - } - else - { - *usLen += usRegCount * 2; - } - } - else - { - eStatus = MB_EX_ILLEGAL_DATA_VALUE; - } - } - else - { - /* Can't be a valid request because the length is incorrect. */ - eStatus = MB_EX_ILLEGAL_DATA_VALUE; - } - return eStatus; -} - -#endif - -#if MB_FUNC_READWRITE_HOLDING_ENABLED > 0 - -eMBException -eMBFuncReadWriteMultipleHoldingRegister( UCHAR * pucFrame, USHORT * usLen ) -{ - USHORT usRegReadAddress; - USHORT usRegReadCount; - USHORT usRegWriteAddress; - USHORT usRegWriteCount; - UCHAR ucRegWriteByteCount; - UCHAR *pucFrameCur; - - eMBException eStatus = MB_EX_NONE; - eMBErrorCode eRegStatus; - - if( *usLen >= ( MB_PDU_FUNC_READWRITE_SIZE_MIN + MB_PDU_SIZE_MIN ) ) - { - usRegReadAddress = ( USHORT )( pucFrame[MB_PDU_FUNC_READWRITE_READ_ADDR_OFF] << 8U ); - usRegReadAddress |= ( USHORT )( pucFrame[MB_PDU_FUNC_READWRITE_READ_ADDR_OFF + 1] ); - usRegReadAddress++; - - usRegReadCount = ( USHORT )( pucFrame[MB_PDU_FUNC_READWRITE_READ_REGCNT_OFF] << 8U ); - usRegReadCount |= ( USHORT )( pucFrame[MB_PDU_FUNC_READWRITE_READ_REGCNT_OFF + 1] ); - - usRegWriteAddress = ( USHORT )( pucFrame[MB_PDU_FUNC_READWRITE_WRITE_ADDR_OFF] << 8U ); - usRegWriteAddress |= ( USHORT )( pucFrame[MB_PDU_FUNC_READWRITE_WRITE_ADDR_OFF + 1] ); - usRegWriteAddress++; - - usRegWriteCount = ( USHORT )( pucFrame[MB_PDU_FUNC_READWRITE_WRITE_REGCNT_OFF] << 8U ); - usRegWriteCount |= ( USHORT )( pucFrame[MB_PDU_FUNC_READWRITE_WRITE_REGCNT_OFF + 1] ); - - ucRegWriteByteCount = pucFrame[MB_PDU_FUNC_READWRITE_BYTECNT_OFF]; - - if( ( usRegReadCount >= 1 ) && ( usRegReadCount <= 0x7D ) && - ( usRegWriteCount >= 1 ) && ( usRegWriteCount <= 0x79 ) && - ( ( 2 * usRegWriteCount ) == ucRegWriteByteCount ) ) - { - /* Make callback to update the register values. */ - eRegStatus = eMBRegHoldingCB( &pucFrame[MB_PDU_FUNC_READWRITE_WRITE_VALUES_OFF], - usRegWriteAddress, usRegWriteCount, MB_REG_WRITE ); - - if( eRegStatus == MB_ENOERR ) - { - /* Set the current PDU data pointer to the beginning. */ - pucFrameCur = &pucFrame[MB_PDU_FUNC_OFF]; - *usLen = MB_PDU_FUNC_OFF; - - /* First byte contains the function code. */ - *pucFrameCur++ = MB_FUNC_READWRITE_MULTIPLE_REGISTERS; - *usLen += 1; - - /* Second byte in the response contain the number of bytes. */ - *pucFrameCur++ = ( UCHAR ) ( usRegReadCount * 2 ); - *usLen += 1; - - /* Make the read callback. */ - eRegStatus = - eMBRegHoldingCB( pucFrameCur, usRegReadAddress, usRegReadCount, MB_REG_READ ); - if( eRegStatus == MB_ENOERR ) - { - *usLen += 2 * usRegReadCount; - } - } - if( eRegStatus != MB_ENOERR ) - { - eStatus = prveMBError2Exception( eRegStatus ); - } - } - else - { - eStatus = MB_EX_ILLEGAL_DATA_VALUE; - } - } - return eStatus; -} - -#endif diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/f08469ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/f08469ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/f08469ab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/f176a9b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/f176a9b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/f176a9b48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/204644cb9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/204644cb9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/204644cb9071001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/4049136f8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/4049136f8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/4049136f8771001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/60464918b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/60464918b66e001a173da96cce181ab0 deleted file mode 100644 index 0d151c449..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/60464918b66e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/700810adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/700810adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 805d9d685..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/700810adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c - -C_DEPS += \ -./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d - -OBJS += \ -./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj - -OBJS__QUOTED += \ -"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" - -C_DEPS__QUOTED += \ -"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" - -C_SRCS__QUOTED += \ -"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/a02ca2e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/a02ca2e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/a02ca2e39a71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/c046dcb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/c046dcb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/c046dcb48771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/d0f6fce39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/d0f6fce39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/d0f6fce39a71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/809f6816b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/809f6816b66e001a173da96cce181ab0 deleted file mode 100644 index a5bb4e1bf..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/809f6816b66e001a173da96cce181ab0 +++ /dev/null @@ -1,208 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -C55_SRCS := -A_SRCS := -CFG_UPPER_SRCS := -CFG_SRCS := -ASM_UPPER_SRCS := -EXE_SRCS := -LDS_UPPER_SRCS := -CPP_SRCS := -CMD_SRCS := -O_SRCS := -ELF_SRCS := -C??_SRCS := -C64_SRCS := -C67_SRCS := -SA_SRCS := -S64_SRCS := -OPT_SRCS := -CXX_SRCS := -S67_SRCS := -S??_SRCS := -PDE_SRCS := -SV7A_SRCS := -K_SRCS := -CLA_SRCS := -S55_SRCS := -LD_UPPER_SRCS := -OUT_SRCS := -INO_SRCS := -LIB_SRCS := -ASM_SRCS := -S_UPPER_SRCS := -S43_SRCS := -LD_SRCS := -CMD_UPPER_SRCS := -C_UPPER_SRCS := -C++_SRCS := -C43_SRCS := -OBJ_SRCS := -LDS_SRCS := -S_SRCS := -CC_SRCS := -S62_SRCS := -C62_SRCS := -C_SRCS := -C55_DEPS := -C_UPPER_DEPS := -S67_DEPS := -S62_DEPS := -S_DEPS := -OPT_DEPS := -C??_DEPS := -ASM_UPPER_DEPS := -S??_DEPS := -C64_DEPS := -CXX_DEPS := -S64_DEPS := -INO_DEPS := -GEN_CMDS := -GEN_FILES := -CLA_DEPS := -S55_DEPS := -SV7A_DEPS := -EXE_OUTPUTS := -C62_DEPS := -C67_DEPS := -PDE_DEPS := -GEN_MISC_DIRS := -K_DEPS := -C_DEPS := -CC_DEPS := -BIN_OUTPUTS := -GEN_OPTS := -C++_DEPS := -C43_DEPS := -S43_DEPS := -OBJS := -ASM_DEPS := -GEN_MISC_FILES := -S_UPPER_DEPS := -CPP_DEPS := -SA_DEPS := -C++_DEPS__QUOTED := -OPT_DEPS__QUOTED := -S_UPPER_DEPS__QUOTED := -SA_DEPS__QUOTED := -C??_DEPS__QUOTED := -S67_DEPS__QUOTED := -GEN_MISC_DIRS__QUOTED := -C55_DEPS__QUOTED := -CC_DEPS__QUOTED := -ASM_UPPER_DEPS__QUOTED := -SV7A_DEPS__QUOTED := -S??_DEPS__QUOTED := -OBJS__QUOTED := -C67_DEPS__QUOTED := -K_DEPS__QUOTED := -S55_DEPS__QUOTED := -GEN_CMDS__QUOTED := -GEN_MISC_FILES__QUOTED := -INO_DEPS__QUOTED := -C62_DEPS__QUOTED := -C_DEPS__QUOTED := -C_UPPER_DEPS__QUOTED := -C43_DEPS__QUOTED := -CPP_DEPS__QUOTED := -BIN_OUTPUTS__QUOTED := -GEN_FILES__QUOTED := -C64_DEPS__QUOTED := -CXX_DEPS__QUOTED := -CLA_DEPS__QUOTED := -S_DEPS__QUOTED := -ASM_DEPS__QUOTED := -S43_DEPS__QUOTED := -EXE_OUTPUTS__QUOTED := -S64_DEPS__QUOTED := -S62_DEPS__QUOTED := -PDE_DEPS__QUOTED := -GEN_OPTS__QUOTED := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -. \ -Common/SWUpdate \ -Common/SW_Info \ -Common/Software_CRC \ -Common/Sys_PinOut_Config \ -Common/Utilities \ -Common/protobuf-c \ -Common/report \ -Communication \ -Communication/PMR/Common \ -Communication/PMR/Connection \ -Communication/PMR/Debugging \ -Communication/PMR/Diagnostics \ -Communication/PMR/EmbeddedParameters \ -Communication/PMR/FirmwareUpgrade \ -Communication/PMR/Hardware \ -Communication/PMR/IO \ -Communication/PMR/MachineStatus \ -Communication/PMR/Power \ -Communication/PMR/Printing \ -Communication/PMR/Stubs \ -Communication/PMR/ThreadLoading \ -Drivers/ADC_Sampling \ -Drivers/FPGA \ -Drivers/FPGA/FPGA_GPIO \ -Drivers/FPGA/FPGA_INTERRUPTS \ -Drivers/FPGA/Full_Vme \ -Drivers/FPGA/Full_Vme/ispvme \ -Drivers/FPGA/Motors_Driver \ -Drivers/Flash_Memory/FATFS \ -Drivers/Flash_Memory \ -Drivers/Heater \ -Drivers/I2C_Communication/ADC_MUX \ -Drivers/I2C_Communication/DAC \ -Drivers/I2C_Communication/Dispenser_Card/EEPROM \ -Drivers/I2C_Communication/Dispenser_Card \ -Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ -Drivers/I2C_Communication/Head_Card/ADC \ -Drivers/I2C_Communication/Head_Card/EEPROM \ -Drivers/I2C_Communication/Head_Card/Fan \ -Drivers/I2C_Communication/Head_Card \ -Drivers/I2C_Communication/Head_Card/IO_Ports \ -Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ -Drivers/I2C_Communication/Head_Card/PT100 \ -Drivers/I2C_Communication \ -Drivers/I2C_Communication/Main_Board_EEPROM \ -Drivers/I2C_Communication/RFID_NFC \ -Drivers/I2C_Communication/RFID_NFC/logi-tag \ -Drivers/I2C_Communication/Thermo_K \ -Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ -Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ -Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ -Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ -Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ -Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ -Drivers/I2C_Communication/WHS_Card/EEPROM \ -Drivers/I2C_Communication/WHS_Card \ -Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ -Drivers/Motors \ -Drivers/On_Chip_Flash \ -Drivers/SPI \ -Drivers/SSI_Comm/Dancer \ -Drivers/SSI_Comm \ -Drivers/SSI_Comm/Speed_Sensor \ -Drivers/USB_Communication \ -Drivers/Uart_Comm/Modbus \ -Drivers/Uart_Comm \ -Drivers/Uart_Comm/WHS_UART \ -Drivers/Valves \ -Drivers/flash_ram \ -Modules/AlarmHandling \ -Modules/Control \ -Modules/Diagnostics \ -Modules/General \ -Modules/Heaters \ -Modules/IDS \ -Modules/IFS \ -Modules/Stubs_Handler \ -Modules/Thread \ -Modules/Waste \ -StateMachines/Initialization \ -StateMachines/Printing \ - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/f0819eacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/f0819eacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 2c8a0951f..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/f0819eacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/106948509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/106948509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/106948509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20784fac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20784fac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20784fac9071001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20869cacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20869cacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 08394bc52..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20869cacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20d7c1388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20d7c1388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20d7c1388871001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/21b8d5398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/21b8d5398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/21b8d5398871001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/31ab5f8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/31ab5f8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/31ab5f8b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/414b093a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/414b093a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/414b093a8871001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/512597509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/512597509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/512597509571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/6042ebacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/6042ebacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index cfddce1c5..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/6042ebacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/6085286c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/6085286c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/6085286c8771001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/610ab29b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/610ab29b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/610ab29b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/802fd6e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/802fd6e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/802fd6e68f71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/a09255ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/a09255ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/a09255ac9071001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/e097cbe19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/e097cbe19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/e097cbe19a71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/f0705678db6c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/f0705678db6c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/f0705678db6c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/f0e8b8e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/f0e8b8e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/f0e8b8e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/1067b01e066d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/1067b01e066d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/1067b01e066d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/31128f398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/31128f398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/31128f398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/61fae4398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/61fae4398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/61fae4398871001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/80c0a4cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/80c0a4cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/80c0a4cc9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/907db9398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/907db9398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/907db9398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/90bae716b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/90bae716b66e001a173da96cce181ab0 deleted file mode 100644 index fe052d491..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/90bae716b66e001a173da96cce181ab0 +++ /dev/null @@ -1,104 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ -../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ -../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ -../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ -../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ -../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ -../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ -../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ -../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ -../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ -../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ -../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ -../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ -../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ -./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ -./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ -./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ -./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ -./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ -./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ -./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ -./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ -./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ -./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ -./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ -./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ -./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d - -OBJS += \ -./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/a0d7e400d66c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/a0d7e400d66c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/a0d7e400d66c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/b0ab074f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/b0ab074f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/b0ab074f9571001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/e185939b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/e185939b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/e185939b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/f0b670e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/f0b670e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/f0b670e68f71001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/109b606e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/109b606e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/109b606e8771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/3072cee78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/3072cee78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/3072cee78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/31a18c398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/31a18c398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/31a18c398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/50c392e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/50c392e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/50c392e39a71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/80f29a29c36e001a17dd93e105fd0cb6 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/80f29a29c36e001a17dd93e105fd0cb6 deleted file mode 100644 index 02615cb68..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/80f29a29c36e001a17dd93e105fd0cb6 +++ /dev/null @@ -1,131 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -#ifndef _MB_CONFIG_H -#define _MB_CONFIG_H - -#ifdef __cplusplus -PR_BEGIN_EXTERN_C -#endif -/* ----------------------- Defines ------------------------------------------*/ -/*! \defgroup modbus_cfg Modbus Configuration - * - * Most modules in the protocol stack are completly optional and can be - * excluded. This is specially important if target resources are very small - * and program memory space should be saved.
- * - * All of these settings are available in the file mbconfig.h - */ -/*! \addtogroup modbus_cfg - * @{ - */ -/*! \brief If Modbus ASCII support is enabled. */ -#define MB_ASCII_ENABLED ( 1 ) - -/*! \brief If Modbus RTU support is enabled. */ -#define MB_RTU_ENABLED ( 1 ) - -/*! \brief If Modbus TCP support is enabled. */ -#define MB_TCP_ENABLED ( 0 ) - -/*! \brief The character timeout value for Modbus ASCII. - * - * The character timeout value is not fixed for Modbus ASCII and is therefore - * a configuration option. It should be set to the maximum expected delay - * time of the network. - */ -#define MB_ASCII_TIMEOUT_SEC ( 1 ) - -/*! \brief Timeout to wait in ASCII prior to enabling transmitter. - * - * If defined the function calls vMBPortSerialDelay with the argument - * MB_ASCII_TIMEOUT_WAIT_BEFORE_SEND_MS to allow for a delay before - * the serial transmitter is enabled. This is required because some - * targets are so fast that there is no time between receiving and - * transmitting the frame. If the master is to slow with enabling its - * receiver then he will not receive the response correctly. - */ -#ifndef MB_ASCII_TIMEOUT_WAIT_BEFORE_SEND_MS -#define MB_ASCII_TIMEOUT_WAIT_BEFORE_SEND_MS ( 0 ) -#endif - -/*! \brief Maximum number of Modbus functions codes the protocol stack - * should support. - * - * The maximum number of supported Modbus functions must be greater than - * the sum of all enabled functions in this file and custom function - * handlers. If set to small adding more functions will fail. - */ -#define MB_FUNC_HANDLERS_MAX ( 16 ) - -/*! \brief Number of bytes which should be allocated for the Report Slave ID - * command. - * - * This number limits the maximum size of the additional segment in the - * report slave id function. See eMBSetSlaveID( ) for more information on - * how to set this value. It is only used if MB_FUNC_OTHER_REP_SLAVEID_ENABLED - * is set to 1. - */ -#define MB_FUNC_OTHER_REP_SLAVEID_BUF ( 32 ) - -/*! \brief If the Report Slave ID function should be enabled. */ -#define MB_FUNC_OTHER_REP_SLAVEID_ENABLED ( 1 ) - -/*! \brief If the Read Input Registers function should be enabled. */ -#define MB_FUNC_READ_INPUT_ENABLED ( 1 ) - -/*! \brief If the Read Holding Registers function should be enabled. */ -#define MB_FUNC_READ_HOLDING_ENABLED ( 1 ) - -/*! \brief If the Write Single Register function should be enabled. */ -#define MB_FUNC_WRITE_HOLDING_ENABLED ( 1 ) - -/*! \brief If the Write Multiple registers function should be enabled. */ -#define MB_FUNC_WRITE_MULTIPLE_HOLDING_ENABLED ( 1 ) - -/*! \brief If the Read Coils function should be enabled. */ -#define MB_FUNC_READ_COILS_ENABLED ( 1 ) - -/*! \brief If the Write Coils function should be enabled. */ -#define MB_FUNC_WRITE_COIL_ENABLED ( 1 ) - -/*! \brief If the Write Multiple Coils function should be enabled. */ -#define MB_FUNC_WRITE_MULTIPLE_COILS_ENABLED ( 1 ) - -/*! \brief If the Read Discrete Inputs function should be enabled. */ -#define MB_FUNC_READ_DISCRETE_INPUTS_ENABLED ( 1 ) - -/*! \brief If the Read/Write Multiple Registers function should be enabled. */ -#define MB_FUNC_READWRITE_HOLDING_ENABLED ( 1 ) - -/*! @} */ -#ifdef __cplusplus - PR_END_EXTERN_C -#endif -#endif diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/a08a1db48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/a08a1db48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/a08a1db48771001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/b023b56e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/b023b56e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/b023b56e8771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/d01ad5b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/d01ad5b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/d01ad5b48771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/10c896ca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/10c896ca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/10c896ca9071001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/207863b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/207863b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/207863b58771001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/310cc0b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/310cc0b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/310cc0b48771001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/5083b08eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/5083b08eb56e001a173da96cce181ab0 deleted file mode 100644 index 7cbd9a7eb..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/5083b08eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/60f8e6e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/60f8e6e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/60f8e6e68f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/8184db398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/8184db398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/8184db398871001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/91cac7388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/91cac7388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/91cac7388871001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/f049bf398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/f049bf398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/f049bf398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/100c06398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/100c06398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/100c06398871001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/20b5da489571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/20b5da489571001a1f70833eb9ed7011 new file mode 100644 index 000000000..57e1b359c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/20b5da489571001a1f70833eb9ed7011 @@ -0,0 +1,777 @@ + +#include +#include +#include +#include +#include "include.h" +#include "driverlib/gpio.h" + +#include "Communication/Connection.h" + +#include "Drivers/USB_Communication/USBCDCD.h" +#include "StateMachines/Initialization/PowerOffSequence.h" +#include "StateMachines/Initialization/PowerIdle.h" + +#include "drivers/Flash_Memory/FATFS/ff.h" +#include "drivers/Flash_Memory/FATFS/Control_File_System.h" +#include "drivers/Flash_ram/FlashProgram.h" +#include "drivers/adc_sampling/adc.h" +#include "drivers/Heater/TemperatureSensor.h" +#include "drivers/ADC_Sampling/adc.h" +#include "drivers/Flash_ram/MCU_E2Prom.h" +#include "Drivers/SSI_Comm/Dancer/Dancer.h" + +#include "Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/fan_click.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.h" +#include "drivers/Motors/Motor.h" +#include "drivers/FPGA/FPGA_SPI_Comm.h" +#include "Modules/IFS/ifs.h" +#include "Modules/IDS/ids_ex.h" +#include "Modules/Control/MillisecTask.h" +#include "modules/thread/thread_ex.h" +#include "modules/heaters/heaters_ex.h" +#include +#include +#include "Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.h" +#include "drivers/adc_sampling/adc.h" +#include +#include +#include +#include +#include +#include +#include + + +#include "Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.h" + + + +extern float NumberOfRotationPerPassage; // how many rotations per spool passage + +//#include "graphics_adapter.h" +extern uint8_t Input_Voltage; +extern uint8_t Test_Read_Buf[4]; + +extern uint8_t Head_Fan_PWM_Command[2]; +extern uint16_t Head_Fan_Tach[2]; + +void Stub_ProgressRequest(MessageContainer* requestContainer) +{ + MessageContainer responseContainer; + + ProgressRequest* request = progress_request__unpack(NULL, requestContainer->data.len, requestContainer->data.data); + + //writeLine("Progress Request..."); + + ProgressResponse response = PROGRESS_RESPONSE__INIT; + +// uint8_t high_byte = 0; +// uint8_t low_byte = 0; + + uint8_t addr = 0; + uint8_t port = 0; + uint8_t pin = 0; + uint8_t value= 0; + + if(request->amount == 0x3E9) // set TCA9555 u3 or u4 + { + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay & 0x8000) // bit15 select the chip address + { + addr = I2CExp2_ADDRESS; + } + else + { + addr = I2CExp1_ADDRESS; + } + + if (request->delay & 0x4000) // bit 14 select port 0 or 1 + { + port = D_TCA9555_PORT_1; + } + else + { + port = D_TCA9555_PORT_0; + } + + pin = ((request->delay & 0x0F00) >> 8); // 8..11 + + if (request->delay & 0x0001) + { + value = 1; + } + else + { + value = 0; + } + response.progress = Write_WHS_9555_io_value( addr, port, pin, value); + response.has_progress = true; + } + } + else + if(request->amount == 0x3E8) //&& (request->delay <= 0x0fff))// set WHS Blower speed 0x00-0xfff + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_enable_control_loop( request->delay & 0x1000);//disable control loop: 0=disable 1= enable + Trigger_SetWHSBlowerVoltage (request->delay & 0x0FFF); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E7) // set WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_Set_SetPoint_Q_value((double) request->delay); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E6) // get WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + response.progress = WHS_Get_Volt_Blower_Control(); + //response.progress = 0; + response.has_progress = true; + } + } + // WHS_Get_Volt_Blower_Control + else + if(request->amount == 0x3EA) + { + uint16_t tempu16 = 0; + double temp_double = 0.0; + uint8_t display_byte = 0; + uint16_t A2D_data = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + display_byte = ((request->delay & 0x3000)>>12); + switch (display_byte) + { + case 0: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x0000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(DrierAVERAGE); + break; + case 1: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x1000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(HeadCURRENT); + break; + case 2: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x2000); // + SetLeftDisplayView (DrierAVERAGE); + SetWriteDisplayView(DrierCURRENT); + break; + case 3: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x3000); // + SetLeftDisplayView (HeadCURRENT); + SetWriteDisplayView(DrierCURRENT); + break; + } + + A2D_data = (request->delay & 0x0FFF); + switch(A2D_data )// get A2D + { + case 0: + get_orf_1(&tempu16); + break; + case 1: + get_orf_2(&tempu16); + break; + case 2: + get_orf_3(&tempu16); + break; + case 3: + get_vlev1(&tempu16); + break; + case 4: + get_vlev2(&tempu16); + break; + case 5: + get_gas_out(&tempu16); + break; + case 6: + get_cur_fan(&tempu16); + break; + case 7: + get_cur_vlv1(&tempu16); + break; + case 8: + tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + case 10: + temp_double = get_Q(HEAD_FLOW_METER); + break; + case 12: + temp_double = get_Q(DRIER_FLOW_METER); + break; + case 20: + temp_double = get_average_Q(HEAD_FLOW_METER); //HEAD + break; + case 22: + temp_double = get_average_Q(DRIER_FLOW_METER); //Drier + break; + + case 11: + //get_orf_2(&tempu16); + break; + case 13: + //get_vlev1(&tempu16); + break; + case 14: + //get_vlev2(&tempu16); + break; + case 15: + //get_gas_out(&tempu16); + break; + case 16: + //get_cur_fan(&tempu16); + break; + case 17: + //get_cur_vlv1(&tempu16); + break; + case 18: + //tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + default : + tempu16 = 0x500; //get_cur_vlv2(&tempu16); + break; + } + } + if ((request->delay)<10) + { + response.progress = (double)tempu16; + } + else + { + response.progress = temp_double; + } + response.has_progress = true; + } + else // + if(request->amount == 0x3EB) + { + uint16_t tempu16 = 0; + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay <= 0x03FF) + { + Trigger_WHS_Set_RDAC(request->delay); // 0 -> 0x03FF + } + else + { + //Trigger_WHS_set_Rheostat_to_CLEAN_AIR(); + } + get_gas_out(&tempu16); + } + response.progress = (double)tempu16; + response.has_progress = true; + } + else + if((request->amount == 0xDE) && (request->delay < 8) && (request->delay >= 0)) // read dispenser type + LS status + { + response.progress = ((Dispenser_struct[request->delay].Type) << 8) + Dispenser_struct[request->delay].Status; + response.has_progress = true; + } + else + if(request->amount == 0xAD) //undef AUTO_HOME_DISPENSERS + { + if ((request->delay >=AutoHoming_off )&&(request->delay<=AutoHoming_JobEnd_PowerOn_off )) + IDS_Dispenser_SetAutoHoming_Config(request->delay); + response.progress = 01; + response.has_progress = true; + } + else + if(request->amount == 0xAD1) //Set_Check_Pressure_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Check_Pressure_Bypass"); + response.progress = Set_Check_Pressure_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD2) //Set_Thread_Rockers_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Thread_Rockers_Bypass"); + response.progress = Set_Thread_Rockers_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD3) //Set_Auto_Shutdown_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Shutdown_Bypass"); + response.progress = Set_Auto_Shutdown_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD4) //Set_Auto_Idle_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Idle_Bypass"); + response.progress = Set_Auto_Idle_Bypass(request->delay); + response.has_progress = true; + } + else + if((request->amount == 0x01) && ((request->delay &0x010000) == 0x010000)) //change mode powerset01 + { + response.progress = Power_Step_01_Mode(((request->delay &0x00FF00)>>8), request->delay &0x0000FF); + response.has_progress = true; + } + else + if((request->amount == 0xAB) && (request->delay == 0xAB)) //Get pressure with flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(true); + response.has_progress = true; + + } + else + if((request->amount == 0xAB) && (request->delay == 0x0)) //measured sensor voltage without flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(false); + response.has_progress = true; + + } + else + if((request->amount == 0xAC) && (request->delay == 0xAC)) //VAC + { + response.progress = ReadVAC(); + response.has_progress = true; + + } + else + if(request->amount == 0x0EAD) //Head Card I/O + { + uint8_t Read_Buf[1] = {0}; + uint8_t Write_Buf[2] = {0,0}; + uint8_t Script_Slave_Add = request -> delay >> 16;//Slave address 0x40 / 0x42 / 0x44 / 0x46 + Write_Buf[0] = (request -> delay & 0x00FF00) >> 8;//read/write low/high + /* + ------------------ + | Byte | WR | RD | + ------------------ + | Low | 02 | 00 | + | High | 03 | 01 | + ------------------ + */ + Write_Buf[1] = request -> delay & 0x0000FF;//data to write + + response.has_progress = false; + + Select_Main_Head_Mux_Channel(); + + if(Write_Buf[0] == 0)//Read + { + //Head_Read_IO_Reg(Script_Slave_Add, LOW); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46) + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + + if(Write_Buf[0] == 1)//Read + { + //Head_Read_IO_Reg(Script_Slave_Add, HIGH); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46)//LS + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + if(Write_Buf[0] == 2)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + Head_I2C_EXP2_0x42.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); + } + + //Head_Write_IO_Reg(Script_Slave_Add, LOW); + } + if(Write_Buf[0] == 3)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[1] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + Head_I2C_EXP2_0x42.uchar[1] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP3_0x44.uchar[1] = (Write_Buf[1] & 0x0C); + } + //Head_Write_IO_Reg(Script_Slave_Add, HIGH); + } + } + else + if(request->amount == 0xFEAD) //functions Head Card I/O + { + Select_Main_Head_Mux_Channel(); + + if((request -> delay & 0xFFF000) == 0xCAF000)//Actuator + { + //HeadCard_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), /*(bool)((request -> delay & 0x10)>>4), */(bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + Trigger_Head_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), (bool)((request -> delay & 0x10)>>4), (bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + //response.progress = HeadCard_Actuators_Status((ACTUATORS)((request -> delay) & 0x100)>>8); + response.has_progress = true; + } + else + if((request -> delay & 0xFF0000) == 0xCA0000)//control all heaters + { + if(request -> delay & 0x01) + { + Disconnect_Mixer_and_12_Heaters_Latch(); + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, TRUE); + Connect_Mixer_and_12_Heaters_Latch(); + } + else + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, FALSE); + } + else + if(request -> delay == 0x0)//return head type + { + response.progress = Head_Type; + response.has_progress = true; + } + + } + else + if((request->amount == 0xFAC0) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + //Head_Fan_PWM_Command[0] = (request->delay & 0xFF) ; + //Test_Head_fan_Click(); + + Trigger_Head_Fan_Control(HEAD_FAN_RIGHT, request->delay & 0xFF); + Task_sleep(2000); + + //response.progress = Fan_Click_Info.Product_ID; + response.progress = Head_Fan_Tach[0]; + response.has_progress = true; + + } + else + if((request->amount == 0xFAC1) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + Trigger_Head_Fan_Control(HEAD_FAN_LEFT, request->delay & 0xFF); + Task_sleep(2000); + response.progress = Head_Fan_Tach[1]; + response.has_progress = true; + } + else + if ((request->amount & 0x0000FFF0) == 0xFAC0) //WHS Fan control + { + uint16_t fan_tacho = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + Trigger_SetWHSFanSpeed(((request->amount & 0x0000000F)-1) , request->delay & 0x000000FF); + Task_sleep(2000); + fan_tacho = WHS_Get_fan_tach( (request->amount & 0x0000000F)-1); + } + response.progress = fan_tacho; + response.has_progress = true; + } + else + if((request->amount == 0x0A) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Initial_Offset_A[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0xB) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Slope_B[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0x5C4E) && (request->delay == 0x5C4E)) //Screw Home Pos dir + { + test_Home_Pos(); + } + else + if((request->amount == 0x100) && (request->delay == 0x100)) //head card PT100 + { + Test_HeadCard_PT100(TEMP_SENSE_ANALOG_DYEINGH_TEMP1); + //response.progress = (double)Test_Read_Buf[0]; + response.progress = (double)Data_ADC_Head; + response.has_progress = true; + } + else + if((request->amount == 0x0D) && (request->delay == 0xEE)) //Dispenser EEprom + { + test_disp_eeprom(0x01,0xA0); + response.progress = OK; + response.has_progress = true; + } + else + if((request->amount == 0xCF) && (request->delay == 0xCF)) //Create File System on the Drive + { +#ifdef WATCHDOG + ROM_WatchdogResetDisable(WATCHDOG0_BASE); + uint32_t timeout = 0xFFFFFFFFU; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + FRESULT iFResult = Init_Flash_File_System(true); + if(iFResult != FR_OK) + { + LOG_ERROR (iFResult, "Error during init Flash File System"); + assert(iFResult); + } +#ifdef WATCHDOG + ROM_WatchdogResetEnable(WATCHDOG0_BASE); + timeout = 120000000*3; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + } + else + if((request->amount == 0x0C) && (request->delay == 0x0C)) //Get Gas Sensor + { + response.progress = (double)Calculate_Gas_Power_Consumption(); + response.has_progress = true; + + } + else + if((request->amount == 0xDD) && (request->delay == 0xDD)) //Read Input Voltage + { + LOG_ERROR(request->delay,"CheckAcInputVoltage"); + CheckAcInputVoltage(); + + response.progress = (double)Input_Voltage; + response.has_progress = true; + } + else + if((request->amount == 0x0CE) && (request->delay == 0x0CE)) //Get Gas Sensor + { + LOG_ERROR(request->delay,"FlashInit"); + FlashInit(); + response.progress = (double)OK; + response.has_progress = true; + + } + else + if(request->amount == 0x0CC) //Cartridge Validation Response Demo + { + LOG_ERROR(request->delay,"ResponseDemo"); + ResponseDemo(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE0) //fast refresh for pressure + { + LOG_ERROR(request->delay,"setRapidPressureRead"); + setRapidPressureRead(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Starting Dispenser PID"); + IDS_Start_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE2) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Stoping Dispenser PID"); + IDS_Stop_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xB1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Set loading arm center"); + Read_Dryer_ENC_Position(); + Task_sleep(500); + Read_Dryer_ENC_Position(); + Task_sleep(500); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CENTER,Read_Dryer_ENC_Position(0,0)); + response.has_progress = true; + } + else + if(request->amount == 0xB2) //Set loading arm cycles + { + LOG_ERROR(request->delay,"Set loading arm cycles"); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CYCLES,request->delay); + response.has_progress = true; + } + + else + if(request->amount == 0xB3) //fast refresh for pressure + { + LOG_ERROR(request->amount,"keep alive test"); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB4) //IDS_Dispenser_Content_Init + { + LOG_ERROR(request->amount,"IDS_Dispenser_Content_Init"); + IDS_Dispenser_Content_Init(); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB5) //fast refresh for pressure + { + if (request->delay<=100) + { + LOG_ERROR(request->delay,"set stub_heating_limit"); + stub_heating_limit = request->delay; + } + response.progress = request->delay; + response.has_progress = true; + + } +#ifdef VAC_TEST + else + if(request->amount == 0xB6) //fast refresh for pressure + { + LOG_ERROR(request->delay,"set vac read test"); + VAC_Test = (double)request->delay; + response.progress = request->delay; + response.has_progress = true; + + } +#endif + + else + if(request->amount == 0xC3) //suspend I2C task + { + if (request->delay == 0) + { + LOG_ERROR(request->delay,"Suspend I2C"); + PowerOffHeatersOff(); + Task_sleep(1000); + Task_setPri (I2C_Task_Handle,-1); + } + else + { + LOG_ERROR(request->delay,"Resume"); + Task_setPri (I2C_Task_Handle,8); + } + response.progress = request->delay; + response.has_progress = true; + + } + else + if((request->amount == 0xDF) && (request->delay == 0xDF)) //Power off + { + PowerOffInit(); + } + else + if(request->amount == 0xF1) + { + LOG_ERROR(request->delay,"NumberOfRotationPerPassage"); + NumberOfRotationPerPassage = (float)(request->delay)/1000; + } + else + { + response.has_progress = true; + int i = 0; + for (i = 0; i < request->amount; i++) + { + response.progress = i; + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, false, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + + int co = 0; + for (co = 0; co < request->delay; co++) + { + __delay_cycles(1000000); + } + } + } + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, true, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + //writeLine("Progress Completed!"); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + return; + +} diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/5110f6b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/5110f6b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/5110f6b48771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/80bb8118b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/80bb8118b66e001a173da96cce181ab0 deleted file mode 100644 index ef02d3fd2..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/80bb8118b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/9033238a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/9033238a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/9033238a9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/b044adab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/b044adab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/b044adab9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/e0c822e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/e0c822e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/e0c822e78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/00ad44adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/00ad44adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index b2b0260e4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/00ad44adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/305f2c8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/305f2c8eb56e001a173da96cce181ab0 deleted file mode 100644 index cfddce1c5..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/305f2c8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/600fb9ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/600fb9ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/600fb9ac9071001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/60b333e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/60b333e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/60b333e39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/60eec7e19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/60eec7e19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/60eec7e19a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/70e02ce49a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/70e02ce49a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/70e02ce49a71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/905d77429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/905d77429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/905d77429b71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/91f54b9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/91f54b9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/91f54b9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/b08449ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/b08449ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/b08449ac9071001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/f0251217b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/f0251217b66e001a173da96cce181ab0 deleted file mode 100644 index 0c7afdd70..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/f0251217b66e001a173da96cce181ab0 +++ /dev/null @@ -1,152 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/IO/CreateRequest.pb-c.c \ -../Communication/PMR/IO/CreateResponse.pb-c.c \ -../Communication/PMR/IO/DeleteRequest.pb-c.c \ -../Communication/PMR/IO/DeleteResponse.pb-c.c \ -../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ -../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ -../Communication/PMR/IO/FileAttribute.pb-c.c \ -../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ -../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ -../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ -../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ -../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ -../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ -../Communication/PMR/IO/FileInfo.pb-c.c \ -../Communication/PMR/IO/FileUploadRequest.pb-c.c \ -../Communication/PMR/IO/FileUploadResponse.pb-c.c \ -../Communication/PMR/IO/GetFilesRequest.pb-c.c \ -../Communication/PMR/IO/GetFilesResponse.pb-c.c \ -../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ -../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ -../Communication/PMR/IO/KillProcessRequest.pb-c.c \ -../Communication/PMR/IO/KillProcessResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/IO/CreateRequest.pb-c.d \ -./Communication/PMR/IO/CreateResponse.pb-c.d \ -./Communication/PMR/IO/DeleteRequest.pb-c.d \ -./Communication/PMR/IO/DeleteResponse.pb-c.d \ -./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ -./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ -./Communication/PMR/IO/FileAttribute.pb-c.d \ -./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ -./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ -./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ -./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ -./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ -./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ -./Communication/PMR/IO/FileInfo.pb-c.d \ -./Communication/PMR/IO/FileUploadRequest.pb-c.d \ -./Communication/PMR/IO/FileUploadResponse.pb-c.d \ -./Communication/PMR/IO/GetFilesRequest.pb-c.d \ -./Communication/PMR/IO/GetFilesResponse.pb-c.d \ -./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ -./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ -./Communication/PMR/IO/KillProcessRequest.pb-c.d \ -./Communication/PMR/IO/KillProcessResponse.pb-c.d - -OBJS += \ -./Communication/PMR/IO/CreateRequest.pb-c.obj \ -./Communication/PMR/IO/CreateResponse.pb-c.obj \ -./Communication/PMR/IO/DeleteRequest.pb-c.obj \ -./Communication/PMR/IO/DeleteResponse.pb-c.obj \ -./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ -./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ -./Communication/PMR/IO/FileAttribute.pb-c.obj \ -./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ -./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ -./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ -./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ -./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ -./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ -./Communication/PMR/IO/FileInfo.pb-c.obj \ -./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ -./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ -./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ -./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ -./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ -./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ -./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ -./Communication/PMR/IO/KillProcessResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\IO\CreateRequest.pb-c.obj" \ -"Communication\PMR\IO\CreateResponse.pb-c.obj" \ -"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ -"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ -"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ -"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ -"Communication\PMR\IO\FileAttribute.pb-c.obj" \ -"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ -"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ -"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ -"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ -"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ -"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ -"Communication\PMR\IO\FileInfo.pb-c.obj" \ -"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ -"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ -"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ -"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ -"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ -"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ -"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ -"Communication\PMR\IO\KillProcessResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\IO\CreateRequest.pb-c.d" \ -"Communication\PMR\IO\CreateResponse.pb-c.d" \ -"Communication\PMR\IO\DeleteRequest.pb-c.d" \ -"Communication\PMR\IO\DeleteResponse.pb-c.d" \ -"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ -"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ -"Communication\PMR\IO\FileAttribute.pb-c.d" \ -"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ -"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ -"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ -"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ -"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ -"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ -"Communication\PMR\IO\FileInfo.pb-c.d" \ -"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ -"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ -"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ -"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ -"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ -"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ -"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ -"Communication\PMR\IO\KillProcessResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/IO/CreateRequest.pb-c.c" \ -"../Communication/PMR/IO/CreateResponse.pb-c.c" \ -"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ -"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ -"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ -"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ -"../Communication/PMR/IO/FileAttribute.pb-c.c" \ -"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ -"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ -"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ -"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ -"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ -"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ -"../Communication/PMR/IO/FileInfo.pb-c.c" \ -"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ -"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ -"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ -"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ -"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ -"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ -"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ -"../Communication/PMR/IO/KillProcessResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/2076f3509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/2076f3509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/2076f3509571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/4001db4f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/4001db4f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/4001db4f9571001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/400b12aa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/400b12aa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/400b12aa9071001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/40a7396d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/40a7396d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/40a7396d8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/40eae6b38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/40eae6b38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/40eae6b38771001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/80dfc9419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/80dfc9419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/80dfc9419b71001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/9047da8db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/9047da8db56e001a173da96cce181ab0 deleted file mode 100644 index f8ecd45e0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/9047da8db56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/d00517b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/d00517b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/d00517b58771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/e03816240d6d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/e03816240d6d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/e03816240d6d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0819e8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0819e8eb56e001a173da96cce181ab0 deleted file mode 100644 index 062005c16..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0819e8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/Heaters/Heaters_bit.c \ -../Modules/Heaters/Heaters_init.c \ -../Modules/Heaters/Heaters_maint.c \ -../Modules/Heaters/Heaters_print.c - -C_DEPS += \ -./Modules/Heaters/Heaters_bit.d \ -./Modules/Heaters/Heaters_init.d \ -./Modules/Heaters/Heaters_maint.d \ -./Modules/Heaters/Heaters_print.d - -OBJS += \ -./Modules/Heaters/Heaters_bit.obj \ -./Modules/Heaters/Heaters_init.obj \ -./Modules/Heaters/Heaters_maint.obj \ -./Modules/Heaters/Heaters_print.obj - -OBJS__QUOTED += \ -"Modules\Heaters\Heaters_bit.obj" \ -"Modules\Heaters\Heaters_init.obj" \ -"Modules\Heaters\Heaters_maint.obj" \ -"Modules\Heaters\Heaters_print.obj" - -C_DEPS__QUOTED += \ -"Modules\Heaters\Heaters_bit.d" \ -"Modules\Heaters\Heaters_init.d" \ -"Modules\Heaters\Heaters_maint.d" \ -"Modules\Heaters\Heaters_print.d" - -C_SRCS__QUOTED += \ -"../Modules/Heaters/Heaters_bit.c" \ -"../Modules/Heaters/Heaters_init.c" \ -"../Modules/Heaters/Heaters_maint.c" \ -"../Modules/Heaters/Heaters_print.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f133ac509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f133ac509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f133ac509571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/50a752c9066d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/50a752c9066d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/50a752c9066d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/7043cd18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/7043cd18b66e001a173da96cce181ab0 deleted file mode 100644 index 94a2fa3e9..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/7043cd18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/713fe0398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/713fe0398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/713fe0398871001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/902057cd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/902057cd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/902057cd9071001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/90ce79429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/90ce79429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/90ce79429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/b0fb1a6d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/b0fb1a6d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/b0fb1a6d8771001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/d06e51c9066d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/d06e51c9066d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/d06e51c9066d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/40a2eb998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/40a2eb998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/40a2eb998f71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/c04e8dadb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/c04e8dadb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 9389df8e2..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/c04e8dadb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/Waste/Waste_BIT.c \ -../Modules/Waste/Waste_init.c \ -../Modules/Waste/Waste_maint.c \ -../Modules/Waste/Waste_print.c \ -../Modules/Waste/newWHS_init.c - -C_DEPS += \ -./Modules/Waste/Waste_BIT.d \ -./Modules/Waste/Waste_init.d \ -./Modules/Waste/Waste_maint.d \ -./Modules/Waste/Waste_print.d \ -./Modules/Waste/newWHS_init.d - -OBJS += \ -./Modules/Waste/Waste_BIT.obj \ -./Modules/Waste/Waste_init.obj \ -./Modules/Waste/Waste_maint.obj \ -./Modules/Waste/Waste_print.obj \ -./Modules/Waste/newWHS_init.obj - -OBJS__QUOTED += \ -"Modules\Waste\Waste_BIT.obj" \ -"Modules\Waste\Waste_init.obj" \ -"Modules\Waste\Waste_maint.obj" \ -"Modules\Waste\Waste_print.obj" \ -"Modules\Waste\newWHS_init.obj" - -C_DEPS__QUOTED += \ -"Modules\Waste\Waste_BIT.d" \ -"Modules\Waste\Waste_init.d" \ -"Modules\Waste\Waste_maint.d" \ -"Modules\Waste\Waste_print.d" \ -"Modules\Waste\newWHS_init.d" - -C_SRCS__QUOTED += \ -"../Modules/Waste/Waste_BIT.c" \ -"../Modules/Waste/Waste_init.c" \ -"../Modules/Waste/Waste_maint.c" \ -"../Modules/Waste/Waste_print.c" \ -"../Modules/Waste/newWHS_init.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/c065c8b38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/c065c8b38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/c065c8b38771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/c0efbc18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/c0efbc18b66e001a173da96cce181ab0 deleted file mode 100644 index a01b7c044..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/c0efbc18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/Control/DriverWithCallbackExample.c \ -../Modules/Control/MillisecTask.c \ -../Modules/Control/PIDAlgo.c \ -../Modules/Control/control.c - -C_DEPS += \ -./Modules/Control/DriverWithCallbackExample.d \ -./Modules/Control/MillisecTask.d \ -./Modules/Control/PIDAlgo.d \ -./Modules/Control/control.d - -OBJS += \ -./Modules/Control/DriverWithCallbackExample.obj \ -./Modules/Control/MillisecTask.obj \ -./Modules/Control/PIDAlgo.obj \ -./Modules/Control/control.obj - -OBJS__QUOTED += \ -"Modules\Control\DriverWithCallbackExample.obj" \ -"Modules\Control\MillisecTask.obj" \ -"Modules\Control\PIDAlgo.obj" \ -"Modules\Control\control.obj" - -C_DEPS__QUOTED += \ -"Modules\Control\DriverWithCallbackExample.d" \ -"Modules\Control\MillisecTask.d" \ -"Modules\Control\PIDAlgo.d" \ -"Modules\Control\control.d" - -C_SRCS__QUOTED += \ -"../Modules/Control/DriverWithCallbackExample.c" \ -"../Modules/Control/MillisecTask.c" \ -"../Modules/Control/PIDAlgo.c" \ -"../Modules/Control/control.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/d0754518b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/d0754518b66e001a173da96cce181ab0 deleted file mode 100644 index 716d5a2e0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/d0754518b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/0009fa398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/0009fa398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/0009fa398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/60036918b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/60036918b66e001a173da96cce181ab0 deleted file mode 100644 index 3a2873b0a..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/60036918b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Thermo_K/MCP9600.c - -C_DEPS += \ -./Drivers/I2C_Communication/Thermo_K/MCP9600.d - -OBJS += \ -./Drivers/I2C_Communication/Thermo_K/MCP9600.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Thermo_K\MCP9600.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/60c6d6509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/60c6d6509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/60c6d6509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/905401cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/905401cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/905401cc9071001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/d0c8beb38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/d0c8beb38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/d0c8beb38771001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/e04a456e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/e04a456e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/e04a456e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/f087dbcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/f087dbcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/f087dbcc9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/f0e665e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/f0e665e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/f0e665e39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9e/10f283cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9e/10f283cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9e/10f283cc9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9e/307e2e8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9e/307e2e8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9e/307e2e8a9571001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9e/70b45bcd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9e/70b45bcd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9e/70b45bcd9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9e/c0fcf4509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9e/c0fcf4509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9e/c0fcf4509571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/5009718eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/5009718eb56e001a173da96cce181ab0 deleted file mode 100644 index a4a43d940..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/5009718eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/516ff98a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/516ff98a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/516ff98a9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/61b1686e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/61b1686e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/61b1686e8771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/90f787adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/90f787adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index cda29b385..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/90f787adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/b0ec878eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/b0ec878eb56e001a173da96cce181ab0 deleted file mode 100644 index a01b7c044..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/b0ec878eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/Control/DriverWithCallbackExample.c \ -../Modules/Control/MillisecTask.c \ -../Modules/Control/PIDAlgo.c \ -../Modules/Control/control.c - -C_DEPS += \ -./Modules/Control/DriverWithCallbackExample.d \ -./Modules/Control/MillisecTask.d \ -./Modules/Control/PIDAlgo.d \ -./Modules/Control/control.d - -OBJS += \ -./Modules/Control/DriverWithCallbackExample.obj \ -./Modules/Control/MillisecTask.obj \ -./Modules/Control/PIDAlgo.obj \ -./Modules/Control/control.obj - -OBJS__QUOTED += \ -"Modules\Control\DriverWithCallbackExample.obj" \ -"Modules\Control\MillisecTask.obj" \ -"Modules\Control\PIDAlgo.obj" \ -"Modules\Control\control.obj" - -C_DEPS__QUOTED += \ -"Modules\Control\DriverWithCallbackExample.d" \ -"Modules\Control\MillisecTask.d" \ -"Modules\Control\PIDAlgo.d" \ -"Modules\Control\control.d" - -C_SRCS__QUOTED += \ -"../Modules/Control/DriverWithCallbackExample.c" \ -"../Modules/Control/MillisecTask.c" \ -"../Modules/Control/PIDAlgo.c" \ -"../Modules/Control/control.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/b0fb2e3a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/b0fb2e3a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/b0fb2e3a8871001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/d045dee68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/d045dee68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/d045dee68f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/d0af76e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/d0af76e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/d0af76e39a71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/e05fb3509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/e05fb3509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9f/e05fb3509571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/10047218b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/10047218b66e001a173da96cce181ab0 deleted file mode 100644 index ce5d85f2d..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/10047218b66e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/40fc7d16b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/40fc7d16b66e001a173da96cce181ab0 deleted file mode 100644 index 811c046a3..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/40fc7d16b66e001a173da96cce181ab0 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/509c14adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/509c14adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index b223c7168..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/509c14adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/50fb37b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/50fb37b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/50fb37b58771001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/8035c118b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/8035c118b66e001a173da96cce181ab0 deleted file mode 100644 index a2a449f77..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/8035c118b66e001a173da96cce181ab0 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/Diagnostics/DiagnosticActions.c \ -../Modules/Diagnostics/Diagnostics.c \ -../Modules/Diagnostics/DiagnosticsHoming.c \ -../Modules/Diagnostics/DiagnosticsJogging.c - -C_DEPS += \ -./Modules/Diagnostics/DiagnosticActions.d \ -./Modules/Diagnostics/Diagnostics.d \ -./Modules/Diagnostics/DiagnosticsHoming.d \ -./Modules/Diagnostics/DiagnosticsJogging.d - -OBJS += \ -./Modules/Diagnostics/DiagnosticActions.obj \ -./Modules/Diagnostics/Diagnostics.obj \ -./Modules/Diagnostics/DiagnosticsHoming.obj \ -./Modules/Diagnostics/DiagnosticsJogging.obj - -OBJS__QUOTED += \ -"Modules\Diagnostics\DiagnosticActions.obj" \ -"Modules\Diagnostics\Diagnostics.obj" \ -"Modules\Diagnostics\DiagnosticsHoming.obj" \ -"Modules\Diagnostics\DiagnosticsJogging.obj" - -C_DEPS__QUOTED += \ -"Modules\Diagnostics\DiagnosticActions.d" \ -"Modules\Diagnostics\Diagnostics.d" \ -"Modules\Diagnostics\DiagnosticsHoming.d" \ -"Modules\Diagnostics\DiagnosticsJogging.d" - -C_SRCS__QUOTED += \ -"../Modules/Diagnostics/DiagnosticActions.c" \ -"../Modules/Diagnostics/Diagnostics.c" \ -"../Modules/Diagnostics/DiagnosticsHoming.c" \ -"../Modules/Diagnostics/DiagnosticsJogging.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/c031516e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/c031516e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/c031516e8771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/c064d7b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/c064d7b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/c064d7b48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/e02fd7998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/e02fd7998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/e02fd7998f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/e0309f429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/e0309f429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/e0309f429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/f034013a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/f034013a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/f034013a8871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/008650cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/008650cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/008650cc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/2057a09b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/2057a09b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/2057a09b8f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/30071d8cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/30071d8cb56e001a173da96cce181ab0 deleted file mode 100644 index de1ba5fae..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/30071d8cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/30ecff18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/30ecff18b66e001a173da96cce181ab0 deleted file mode 100644 index 2e9e44918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/30ecff18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/405b7718b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/405b7718b66e001a173da96cce181ab0 deleted file mode 100644 index 6735c78b9..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/405b7718b66e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/4072413a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/4072413a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/4072413a8871001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/40c60ccc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/40c60ccc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/40c60ccc9071001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/904198e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/904198e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/904198e39a71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/90fe889b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/90fe889b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/90fe889b8f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/a0227516b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/a0227516b66e001a173da96cce181ab0 deleted file mode 100644 index ba205852c..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/a0227516b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/SW_Info/SW_Info.c - -C_DEPS += \ -./Common/SW_Info/SW_Info.d - -OBJS += \ -./Common/SW_Info/SW_Info.obj - -OBJS__QUOTED += \ -"Common\SW_Info\SW_Info.obj" - -C_DEPS__QUOTED += \ -"Common\SW_Info\SW_Info.d" - -C_SRCS__QUOTED += \ -"../Common/SW_Info/SW_Info.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/a08ea6509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/a08ea6509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/a08ea6509571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/c05fa5acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/c05fa5acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 4b547970d..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/c05fa5acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ -../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ -./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ -./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ -"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ -"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ -"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/d013df8bb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/d013df8bb56e001a173da96cce181ab0 deleted file mode 100644 index b5f8c66dd..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/d013df8bb56e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/SWUpdate/FileSystem.c \ -../Common/SWUpdate/FirmwareUpgrade.c - -C_DEPS += \ -./Common/SWUpdate/FileSystem.d \ -./Common/SWUpdate/FirmwareUpgrade.d - -OBJS += \ -./Common/SWUpdate/FileSystem.obj \ -./Common/SWUpdate/FirmwareUpgrade.obj - -OBJS__QUOTED += \ -"Common\SWUpdate\FileSystem.obj" \ -"Common\SWUpdate\FirmwareUpgrade.obj" - -C_DEPS__QUOTED += \ -"Common\SWUpdate\FileSystem.d" \ -"Common\SWUpdate\FirmwareUpgrade.d" - -C_SRCS__QUOTED += \ -"../Common/SWUpdate/FileSystem.c" \ -"../Common/SWUpdate/FirmwareUpgrade.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/e023558b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/e023558b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/e023558b9571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/008f8dcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/008f8dcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/008f8dcc9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/20b13218b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/20b13218b66e001a173da96cce181ab0 deleted file mode 100644 index 6f80887dd..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/20b13218b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/507298adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/507298adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 606e96c56..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/507298adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../StateMachines/Printing/JobSTM.c \ -../StateMachines/Printing/PrintingSTM.c - -C_DEPS += \ -./StateMachines/Printing/JobSTM.d \ -./StateMachines/Printing/PrintingSTM.d - -OBJS += \ -./StateMachines/Printing/JobSTM.obj \ -./StateMachines/Printing/PrintingSTM.obj - -OBJS__QUOTED += \ -"StateMachines\Printing\JobSTM.obj" \ -"StateMachines\Printing\PrintingSTM.obj" - -C_DEPS__QUOTED += \ -"StateMachines\Printing\JobSTM.d" \ -"StateMachines\Printing\PrintingSTM.d" - -C_SRCS__QUOTED += \ -"../StateMachines/Printing/JobSTM.c" \ -"../StateMachines/Printing/PrintingSTM.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/7022f48bb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/7022f48bb56e001a173da96cce181ab0 deleted file mode 100644 index 811c046a3..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/7022f48bb56e001a173da96cce181ab0 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/70d9c2e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/70d9c2e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/70d9c2e78f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/a00b29419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/a00b29419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/a00b29419b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/b06db1acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/b06db1acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index c0c254965..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/b06db1acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/b0d960cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/b0d960cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/b0d960cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/b178b2398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/b178b2398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/b178b2398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/d066e68bb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/d066e68bb56e001a173da96cce181ab0 deleted file mode 100644 index a1de9654a..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/d066e68bb56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/Software_CRC/sw_crc.c - -C_DEPS += \ -./Common/Software_CRC/sw_crc.d - -OBJS += \ -./Common/Software_CRC/sw_crc.obj - -OBJS__QUOTED += \ -"Common\Software_CRC\sw_crc.obj" - -C_DEPS__QUOTED += \ -"Common\Software_CRC\sw_crc.d" - -C_SRCS__QUOTED += \ -"../Common/Software_CRC/sw_crc.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/e075b26c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/e075b26c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/e075b26c8771001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/e0e66e9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/e0e66e9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/e0e66e9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/e0f19f18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/e0f19f18b66e001a173da96cce181ab0 deleted file mode 100644 index 4501ed229..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/e0f19f18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/f05e7d398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/f05e7d398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/f05e7d398871001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/f1bac1398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/f1bac1398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/f1bac1398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/00742db58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/00742db58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/00742db58771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/304c5cb58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/304c5cb58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/304c5cb58771001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/40fc8be58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/40fc8be58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/40fc8be58f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/503a5eab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/503a5eab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/503a5eab9071001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/606d0dcd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/606d0dcd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/606d0dcd9071001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/607f8a16b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/607f8a16b66e001a173da96cce181ab0 deleted file mode 100644 index 406e76651..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/607f8a16b66e001a173da96cce181ab0 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/report/distributor.c \ -../Common/report/filter.c \ -../Common/report/reportInit.c - -C_DEPS += \ -./Common/report/distributor.d \ -./Common/report/filter.d \ -./Common/report/reportInit.d - -OBJS += \ -./Common/report/distributor.obj \ -./Common/report/filter.obj \ -./Common/report/reportInit.obj - -OBJS__QUOTED += \ -"Common\report\distributor.obj" \ -"Common\report\filter.obj" \ -"Common\report\reportInit.obj" - -C_DEPS__QUOTED += \ -"Common\report\distributor.d" \ -"Common\report\filter.d" \ -"Common\report\reportInit.d" - -C_SRCS__QUOTED += \ -"../Common/report/distributor.c" \ -"../Common/report/filter.c" \ -"../Common/report/reportInit.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/610fa3398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/610fa3398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/610fa3398871001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/8021cbaab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/8021cbaab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 7024e2b68..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/8021cbaab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,57 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/805c96e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/805c96e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/805c96e58f71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/8060446e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/8060446e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/8060446e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/a043849b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/a043849b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/a043849b8f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/a0d535ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/a0d535ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/a0d535ac9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/a0e4aae78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/a0e4aae78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/a0e4aae78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/b05bb4419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/b05bb4419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/b05bb4419b71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/00646b8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/00646b8eb56e001a173da96cce181ab0 deleted file mode 100644 index 49e799865..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/00646b8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Valves/Valve.c - -C_DEPS += \ -./Drivers/Valves/Valve.d - -OBJS += \ -./Drivers/Valves/Valve.obj - -OBJS__QUOTED += \ -"Drivers\Valves\Valve.obj" - -C_DEPS__QUOTED += \ -"Drivers\Valves\Valve.d" - -C_SRCS__QUOTED += \ -"../Drivers/Valves/Valve.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/100742cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/100742cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/100742cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/20223518b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/20223518b66e001a173da96cce181ab0 deleted file mode 100644 index 9c82ff358..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/20223518b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/DAC/Blower.c - -C_DEPS += \ -./Drivers/I2C_Communication/DAC/Blower.d - -OBJS += \ -./Drivers/I2C_Communication/DAC/Blower.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\DAC\Blower.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\DAC\Blower.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/DAC/Blower.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/20607e18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/20607e18b66e001a173da96cce181ab0 deleted file mode 100644 index f38ee981c..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/20607e18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ -../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ -./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ -./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ -"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ -"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ -"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/3058428eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/3058428eb56e001a173da96cce181ab0 deleted file mode 100644 index f57d10d43..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/3058428eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/501c5a509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/501c5a509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/501c5a509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/50919b9a8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/50919b9a8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/50919b9a8f71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/50b3a2429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/50b3a2429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/50b3a2429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/50e6de8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/50e6de8eb56e001a173da96cce181ab0 deleted file mode 100644 index 98cd1f3ec..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/50e6de8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,56 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/Thread/ThreadLoad.c \ -../Modules/Thread/Thread_BIT.c \ -../Modules/Thread/Thread_Winder.c \ -../Modules/Thread/Thread_init.c \ -../Modules/Thread/Thread_maint.c \ -../Modules/Thread/Thread_print.c - -C_DEPS += \ -./Modules/Thread/ThreadLoad.d \ -./Modules/Thread/Thread_BIT.d \ -./Modules/Thread/Thread_Winder.d \ -./Modules/Thread/Thread_init.d \ -./Modules/Thread/Thread_maint.d \ -./Modules/Thread/Thread_print.d - -OBJS += \ -./Modules/Thread/ThreadLoad.obj \ -./Modules/Thread/Thread_BIT.obj \ -./Modules/Thread/Thread_Winder.obj \ -./Modules/Thread/Thread_init.obj \ -./Modules/Thread/Thread_maint.obj \ -./Modules/Thread/Thread_print.obj - -OBJS__QUOTED += \ -"Modules\Thread\ThreadLoad.obj" \ -"Modules\Thread\Thread_BIT.obj" \ -"Modules\Thread\Thread_Winder.obj" \ -"Modules\Thread\Thread_init.obj" \ -"Modules\Thread\Thread_maint.obj" \ -"Modules\Thread\Thread_print.obj" - -C_DEPS__QUOTED += \ -"Modules\Thread\ThreadLoad.d" \ -"Modules\Thread\Thread_BIT.d" \ -"Modules\Thread\Thread_Winder.d" \ -"Modules\Thread\Thread_init.d" \ -"Modules\Thread\Thread_maint.d" \ -"Modules\Thread\Thread_print.d" - -C_SRCS__QUOTED += \ -"../Modules/Thread/ThreadLoad.c" \ -"../Modules/Thread/Thread_BIT.c" \ -"../Modules/Thread/Thread_Winder.c" \ -"../Modules/Thread/Thread_init.c" \ -"../Modules/Thread/Thread_maint.c" \ -"../Modules/Thread/Thread_print.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/7025d218b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/7025d218b66e001a173da96cce181ab0 deleted file mode 100644 index 6ced92348..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/7025d218b66e001a173da96cce181ab0 +++ /dev/null @@ -1,56 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/IDS/IDS_BIT.c \ -../Modules/IDS/IDS_Cleaning.c \ -../Modules/IDS/IDS_dispenser.c \ -../Modules/IDS/IDS_init.c \ -../Modules/IDS/IDS_maint.c \ -../Modules/IDS/IDS_print.c - -C_DEPS += \ -./Modules/IDS/IDS_BIT.d \ -./Modules/IDS/IDS_Cleaning.d \ -./Modules/IDS/IDS_dispenser.d \ -./Modules/IDS/IDS_init.d \ -./Modules/IDS/IDS_maint.d \ -./Modules/IDS/IDS_print.d - -OBJS += \ -./Modules/IDS/IDS_BIT.obj \ -./Modules/IDS/IDS_Cleaning.obj \ -./Modules/IDS/IDS_dispenser.obj \ -./Modules/IDS/IDS_init.obj \ -./Modules/IDS/IDS_maint.obj \ -./Modules/IDS/IDS_print.obj - -OBJS__QUOTED += \ -"Modules\IDS\IDS_BIT.obj" \ -"Modules\IDS\IDS_Cleaning.obj" \ -"Modules\IDS\IDS_dispenser.obj" \ -"Modules\IDS\IDS_init.obj" \ -"Modules\IDS\IDS_maint.obj" \ -"Modules\IDS\IDS_print.obj" - -C_DEPS__QUOTED += \ -"Modules\IDS\IDS_BIT.d" \ -"Modules\IDS\IDS_Cleaning.d" \ -"Modules\IDS\IDS_dispenser.d" \ -"Modules\IDS\IDS_init.d" \ -"Modules\IDS\IDS_maint.d" \ -"Modules\IDS\IDS_print.d" - -C_SRCS__QUOTED += \ -"../Modules/IDS/IDS_BIT.c" \ -"../Modules/IDS/IDS_Cleaning.c" \ -"../Modules/IDS/IDS_dispenser.c" \ -"../Modules/IDS/IDS_init.c" \ -"../Modules/IDS/IDS_maint.c" \ -"../Modules/IDS/IDS_print.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/809f76e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/809f76e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/809f76e58f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/80fe1a3a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/80fe1a3a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/80fe1a3a8871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/b182858b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/b182858b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/b182858b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/c00e37e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/c00e37e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/c00e37e39a71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/c0e988429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/c0e988429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/c0e988429b71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/d0f3178b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/d0f3178b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/d0f3178b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/e094578b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/e094578b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/e094578b9571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/e1a2b0b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/e1a2b0b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/e1a2b0b48771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/f0a4ad419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/f0a4ad419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/f0a4ad419b71001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/405af8b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/405af8b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/405af8b48771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/50acca8cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/50acca8cb56e001a173da96cce181ab0 deleted file mode 100644 index 0d046f6d7..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/50acca8cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,155 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/60191817b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/60191817b66e001a173da96cce181ab0 deleted file mode 100644 index 89e01b6a8..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/60191817b66e001a173da96cce181ab0 +++ /dev/null @@ -1,62 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ -../Communication/PMR/MachineStatus/MachineState.pb-c.c \ -../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ -../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ -../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ -../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ -../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ -./Communication/PMR/MachineStatus/MachineState.pb-c.d \ -./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ -./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ -./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ -./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ -./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d - -OBJS += \ -./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ -./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ -./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ -./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ -./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ -./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ -./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ -"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ -"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ -"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ -"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ -"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ -"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ -"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ -"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ -"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ -"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ -"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ -"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ -"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ -"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ -"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ -"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ -"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ -"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/6027ae2bdc6c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/6027ae2bdc6c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/6027ae2bdc6c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/70b0b5cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/70b0b5cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/70b0b5cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/903527a3f36c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/903527a3f36c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/903527a3f36c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/90e4d418b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/90e4d418b66e001a173da96cce181ab0 deleted file mode 100644 index b2f93b2cc..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/90e4d418b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/IFS/ifs.c - -C_DEPS += \ -./Modules/IFS/ifs.d - -OBJS += \ -./Modules/IFS/ifs.obj - -OBJS__QUOTED += \ -"Modules\IFS\ifs.obj" - -C_DEPS__QUOTED += \ -"Modules\IFS\ifs.d" - -C_SRCS__QUOTED += \ -"../Modules/IFS/ifs.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/a0c247f60a6d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/a0c247f60a6d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/a0c247f60a6d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/f0858ae39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/f0858ae39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/f0858ae39a71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/008ac99b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/008ac99b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/008ac99b8f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/00beeb8bb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/00beeb8bb56e001a173da96cce181ab0 deleted file mode 100644 index 7658bc5b9..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/00beeb8bb56e001a173da96cce181ab0 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ -../Common/Sys_PinOut_Config/Pin.c \ -../Common/Sys_PinOut_Config/Pin_config.c - -C_DEPS += \ -./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ -./Common/Sys_PinOut_Config/Pin.d \ -./Common/Sys_PinOut_Config/Pin_config.d - -OBJS += \ -./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ -./Common/Sys_PinOut_Config/Pin.obj \ -./Common/Sys_PinOut_Config/Pin_config.obj - -OBJS__QUOTED += \ -"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ -"Common\Sys_PinOut_Config\Pin.obj" \ -"Common\Sys_PinOut_Config\Pin_config.obj" - -C_DEPS__QUOTED += \ -"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ -"Common\Sys_PinOut_Config\Pin.d" \ -"Common\Sys_PinOut_Config\Pin_config.d" - -C_SRCS__QUOTED += \ -"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ -"../Common/Sys_PinOut_Config/Pin.c" \ -"../Common/Sys_PinOut_Config/Pin_config.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/300f7f8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/300f7f8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/300f7f8a9571001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/40991f9c8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/40991f9c8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/40991f9c8f71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/8084db398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/8084db398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/8084db398871001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/a00803b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/a00803b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/a00803b58771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/a079386e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/a079386e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/a079386e8771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/e0f3c98db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/e0f3c98db56e001a173da96cce181ab0 deleted file mode 100644 index f8910cec4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/e0f3c98db56e001a173da96cce181ab0 +++ /dev/null @@ -1,56 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Flash_Memory/FATFS/Control_File_System.c \ -../Drivers/Flash_Memory/FATFS/cc932.c \ -../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ -../Drivers/Flash_Memory/FATFS/ff.c \ -../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ -../Drivers/Flash_Memory/FATFS/spi_flash.c - -C_DEPS += \ -./Drivers/Flash_Memory/FATFS/Control_File_System.d \ -./Drivers/Flash_Memory/FATFS/cc932.d \ -./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ -./Drivers/Flash_Memory/FATFS/ff.d \ -./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ -./Drivers/Flash_Memory/FATFS/spi_flash.d - -OBJS += \ -./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ -./Drivers/Flash_Memory/FATFS/cc932.obj \ -./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ -./Drivers/Flash_Memory/FATFS/ff.obj \ -./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ -./Drivers/Flash_Memory/FATFS/spi_flash.obj - -OBJS__QUOTED += \ -"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ -"Drivers\Flash_Memory\FATFS\cc932.obj" \ -"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ -"Drivers\Flash_Memory\FATFS\ff.obj" \ -"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ -"Drivers\Flash_Memory\FATFS\spi_flash.obj" - -C_DEPS__QUOTED += \ -"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ -"Drivers\Flash_Memory\FATFS\cc932.d" \ -"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ -"Drivers\Flash_Memory\FATFS\ff.d" \ -"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ -"Drivers\Flash_Memory\FATFS\spi_flash.d" - -C_SRCS__QUOTED += \ -"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ -"../Drivers/Flash_Memory/FATFS/cc932.c" \ -"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ -"../Drivers/Flash_Memory/FATFS/ff.c" \ -"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ -"../Drivers/Flash_Memory/FATFS/spi_flash.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/e13d2fb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/e13d2fb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/e13d2fb48771001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/f058aeb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/f058aeb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/f058aeb48771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/0046ee509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/0046ee509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/0046ee509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/20b3a0ca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/20b3a0ca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/20b3a0ca9071001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/406a138cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/406a138cb56e001a173da96cce181ab0 deleted file mode 100644 index 148485096..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/406a138cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/50cea2e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/50cea2e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/50cea2e78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/50e665ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/50e665ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/50e665ac9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/50f81018b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/50f81018b66e001a173da96cce181ab0 deleted file mode 100644 index 86e61b207..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/50f81018b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/6008c5429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/6008c5429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/6008c5429b71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/807fea9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/807fea9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/807fea9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/80ee278a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/80ee278a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/80ee278a9571001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/a03262509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/a03262509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/a03262509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/a0bdc39b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/a0bdc39b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/a0bdc39b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/c053f26e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/c053f26e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/c053f26e8771001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/e015b1e29a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/e015b1e29a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/e015b1e29a71001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/e04f95ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/e04f95ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/e04f95ab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/f08a58429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/f08a58429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/f08a58429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/00885fadb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/00885fadb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 7cbd9a7eb..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/00885fadb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/200c83e0d56c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/200c83e0d56c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index e69de29bb..000000000 diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/40fc42419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/40fc42419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/40fc42419b71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/5074b1e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/5074b1e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/5074b1e78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/6003dbb38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/6003dbb38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/6003dbb38771001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/80ea59429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/80ea59429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/80ea59429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/90b1088b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/90b1088b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/90b1088b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/b0f162cb9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/b0f162cb9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/b0f162cb9071001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/c047143a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/c047143a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/c047143a8871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/103311cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/103311cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/103311cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/1073afe39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/1073afe39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/1073afe39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/10b0508eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/10b0508eb56e001a173da96cce181ab0 deleted file mode 100644 index 4501ed229..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/10b0508eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/10e17ce58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/10e17ce58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/10e17ce58f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/200e6817b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/200e6817b66e001a173da96cce181ab0 deleted file mode 100644 index 4c77c8969..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/200e6817b66e001a173da96cce181ab0 +++ /dev/null @@ -1,43 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/205a54ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/205a54ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/205a54ac9071001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/50bde28bb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/50bde28bb56e001a173da96cce181ab0 deleted file mode 100644 index ba205852c..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/50bde28bb56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/SW_Info/SW_Info.c - -C_DEPS += \ -./Common/SW_Info/SW_Info.d - -OBJS += \ -./Common/SW_Info/SW_Info.obj - -OBJS__QUOTED += \ -"Common\SW_Info\SW_Info.obj" - -C_DEPS__QUOTED += \ -"Common\SW_Info\SW_Info.d" - -C_SRCS__QUOTED += \ -"../Common/SW_Info/SW_Info.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/71852eb58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/71852eb58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/71852eb58771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/71cf738b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/71cf738b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/71cf738b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/80c6e88db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/80c6e88db56e001a173da96cce181ab0 deleted file mode 100644 index e7680d0ef..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/80c6e88db56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/9095d1ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/9095d1ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/9095d1ab9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/a05016e88f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/a05016e88f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a8/a05016e88f71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/00f22f18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/00f22f18b66e001a173da96cce181ab0 deleted file mode 100644 index 54dde83fa..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/00f22f18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/10664af6db6c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/10664af6db6c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/10664af6db6c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/107d26aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/107d26aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 148485096..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/107d26aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/109b58e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/109b58e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/109b58e68f71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/609a898eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/609a898eb56e001a173da96cce181ab0 deleted file mode 100644 index fef65b56e..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/609a898eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/90d8a8509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/90d8a8509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/90d8a8509571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/b06fcae68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/b06fcae68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/b06fcae68f71001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/c056688eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/c056688eb56e001a173da96cce181ab0 deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/c056688eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/c0a5df8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/c0a5df8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/c0a5df8a9571001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/d08bba509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/d08bba509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/d08bba509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/d0a9ef16b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/d0a9ef16b66e001a173da96cce181ab0 deleted file mode 100644 index 7024e2b68..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/d0a9ef16b66e001a173da96cce181ab0 +++ /dev/null @@ -1,57 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/203660ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/203660ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/203660ab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/305c65429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/305c65429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/305c65429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/40ea02e49a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/40ea02e49a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/40ea02e49a71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/40fbe14e9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/40fbe14e9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/40fbe14e9571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/a0dcf56b8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/a0dcf56b8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/a0dcf56b8771001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/c090218b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/c090218b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/c090218b9571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/00184eacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/00184eacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index f770e24a4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/00184eacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,62 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ -../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ -../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ -../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ -../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ -../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ -../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c - -C_DEPS += \ -./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ -./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ -./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ -./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ -./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ -./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ -./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d - -OBJS += \ -./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ -./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ -./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ -./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ -./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ -./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ -./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ -"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ -"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ -"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ -"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ -"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ -"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ -"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ -"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ -"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ -"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ -"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ -"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ -"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ -"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ -"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ -"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ -"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ -"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/0100bd398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/0100bd398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/0100bd398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/2084c7509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/2084c7509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/2084c7509571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/20c8a29b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/20c8a29b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/20c8a29b8f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/702a223a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/702a223a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/702a223a8871001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/80be53e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/80be53e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/80be53e39a71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/80df639a8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/80df639a8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/80df639a8f71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/9012ce8db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/9012ce8db56e001a173da96cce181ab0 deleted file mode 100644 index 83cbddb67..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/9012ce8db56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Flash_Memory/Flash_Memory.c - -C_DEPS += \ -./Drivers/Flash_Memory/Flash_Memory.d - -OBJS += \ -./Drivers/Flash_Memory/Flash_Memory.obj - -OBJS__QUOTED += \ -"Drivers\Flash_Memory\Flash_Memory.obj" - -C_DEPS__QUOTED += \ -"Drivers\Flash_Memory\Flash_Memory.d" - -C_SRCS__QUOTED += \ -"../Drivers/Flash_Memory/Flash_Memory.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/905a7a948f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/905a7a948f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..341a1a697 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/905a7a948f71001a1f70833eb9ed7011 @@ -0,0 +1,777 @@ + +#include +#include +#include +#include +#include "include.h" +#include "driverlib/gpio.h" + +#include "Communication/Connection.h" + +#include "Drivers/USB_Communication/USBCDCD.h" +#include "StateMachines/Initialization/PowerOffSequence.h" +#include "StateMachines/Initialization/PowerIdle.h" + +#include "drivers/Flash_Memory/FATFS/ff.h" +#include "drivers/Flash_Memory/FATFS/Control_File_System.h" +#include "drivers/Flash_ram/FlashProgram.h" +#include "drivers/adc_sampling/adc.h" +#include "drivers/Heater/TemperatureSensor.h" +#include "drivers/ADC_Sampling/adc.h" +#include "drivers/Flash_ram/MCU_E2Prom.h" +#include "Drivers/SSI_Comm/Dancer/Dancer.h" + +#include "Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/fan_click.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.h" +#include "drivers/Motors/Motor.h" +#include "drivers/FPGA/FPGA_SPI_Comm.h" +#include "Modules/IFS/ifs.h" +#include "Modules/IDS/ids_ex.h" +#include "Modules/Control/MillisecTask.h" +#include "modules/thread/thread_ex.h" +#include "modules/heaters/heaters_ex.h" +#include +#include +#include "Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.h" +#include "drivers/adc_sampling/adc.h" +#include +#include +#include +#include +#include +#include +#include + + +#include "Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.h" + + + +extern float NumberOfRotationPerPassage; // how many rotations per spool passage + +//#include "graphics_adapter.h" +extern uint8_t Input_Voltage; +extern uint8_t Test_Read_Buf[4]; + +extern uint8_t Head_Fan_PWM_Command[2]; +extern uint16_t Head_Fan_Tach[2]; + +void Stub_ProgressRequest(MessageContainer* requestContainer) +{ + MessageContainer responseContainer; + + ProgressRequest* request = progress_request__unpack(NULL, requestContainer->data.len, requestContainer->data.data); + + //writeLine("Progress Request..."); + + ProgressResponse response = PROGRESS_RESPONSE__INIT; + +// uint8_t high_byte = 0; +// uint8_t low_byte = 0; + + uint8_t addr = 0; + uint8_t port = 0; + uint8_t pin = 0; + uint8_t value= 0; + + if(request->amount == 0x3E9) // set TCA9555 u3 or u4 + { + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay & 0x8000) // bit15 select the chip address + { + addr = I2CExp2_ADDRESS; + } + else + { + addr = I2CExp1_ADDRESS; + } + + if (request->delay & 0x4000) // bit 14 select port 0 or 1 + { + port = D_TCA9555_PORT_1; + } + else + { + port = D_TCA9555_PORT_0; + } + + pin = ((request->delay & 0x0F00) >> 8); // 8..11 + + if (request->delay & 0x0001) + { + value = 1; + } + else + { + value = 0; + } + response.progress = Write_WHS_9555_io_value( addr, port, pin, value); + response.has_progress = true; + } + } + else + if(request->amount == 0x3E8) //&& (request->delay <= 0x0fff))// set WHS Blower speed 0x00-0xfff + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_enable_control_loop( request->delay & 0x1000);//disable control loop: 0=disable 1= enable + Trigger_SetWHSBlowerVoltage (request->delay & 0x0FFF); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E7) // set WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_Set_SetPoint_Q_value((double) request->delay); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E6) // get WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + response.progress = WHS_Get_Volt_Blower_Control(); + //response.progress = 0; + response.has_progress = true; + } + } + // WHS_Get_Volt_Blower_Control + else + if(request->amount == 0x3EA) + { + uint16_t tempu16 = 0; + double temp_double = 0.0; + uint8_t display_byte = 0; + uint16_t A2D_data = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + display_byte = ((request->delay & 0x3000)>>12); + switch (display_byte) + { + case 0: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x0000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(DrierAVERAGE); + break; + case 1: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x1000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(HeadCURRENT); + break; + case 2: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x2000); // + SetLeftDisplayView (DrierAVERAGE); + SetWriteDisplayView(DrierCURRENT); + break; + case 3: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x3000); // + SetLeftDisplayView (HeadCURRENT); + SetWriteDisplayView(DrierCURRENT); + break; + } + + A2D_data = (request->delay & 0x0FFF); + switch(A2D_data )// get A2D + { + case 0: + get_orf_1(&tempu16); + break; + case 1: + get_orf_2(&tempu16); + break; + case 2: + get_orf_3(&tempu16); + break; + case 3: + get_vlev1(&tempu16); + break; + case 4: + get_vlev2(&tempu16); + break; + case 5: + get_gas_out(&tempu16); + break; + case 6: + get_cur_fan(&tempu16); + break; + case 7: + get_cur_vlv1(&tempu16); + break; + case 8: + tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + case 10: + temp_double = get_Q(HEAD_FLOW_METER); + break; + case 12: + temp_double = get_Q(DRIER_FLOW_METER); + break; + case 20: + temp_double = get_average_Q(HEAD_FLOW_METER); //HEAD + break; + case 22: + temp_double = get_average_Q(DRIER_FLOW_METER); //Drier + break; + + case 11: + //get_orf_2(&tempu16); + break; + case 13: + //get_vlev1(&tempu16); + break; + case 14: + //get_vlev2(&tempu16); + break; + case 15: + //get_gas_out(&tempu16); + break; + case 16: + //get_cur_fan(&tempu16); + break; + case 17: + //get_cur_vlv1(&tempu16); + break; + case 18: + //tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + default : + tempu16 = 0x500; //get_cur_vlv2(&tempu16); + break; + } + } + if ((request->delay)<10) + { + response.progress = (double)tempu16; + } + else + { + response.progress = temp_double; + } + response.has_progress = true; + } + else // + if(request->amount == 0x3EB) + { + uint16_t tempu16 = 0; + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay <= 0x03FF) + { + Trigger_WHS_Set_RDAC(request->delay); // 0 -> 0x03FF + } + else + { + //Trigger_WHS_set_Rheostat_to_CLEAN_AIR(); + } + get_gas_out(&tempu16); + } + response.progress = (double)tempu16; + response.has_progress = true; + } + else + if((request->amount == 0xDE) && (request->delay < 8) && (request->delay >= 0)) // read dispenser type + LS status + { + response.progress = ((Dispenser_struct[request->delay].Type) << 8) + Dispenser_struct[request->delay].Status; + response.has_progress = true; + } + else + if(request->amount == 0xAD) //undef AUTO_HOME_DISPENSERS + { + if ((request->delay >=AutoHoming_off )&&(request->delay<=AutoHoming_JobEnd_PowerOn_off )) + IDS_Dispenser_SetAutoHoming_Config(request->delay); + response.progress = 01; + response.has_progress = true; + } + else + if(request->amount == 0xAD1) //Set_Check_Pressure_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Check_Pressure_Bypass"); + response.progress = Set_Check_Pressure_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD2) //Set_Thread_Rockers_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Thread_Rockers_Bypass"); + response.progress = Set_Thread_Rockers_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD3) //Set_Auto_Shutdown_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Shutdown_Bypass"); + response.progress = Set_Auto_Shutdown_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD4) //Set_Auto_Idle_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Idle_Bypass"); + response.progress = Set_Auto_Idle_Bypass(request->delay); + response.has_progress = true; + } + else + if((request->amount == 0x01) && ((request->delay &0x010000) == 0x010000)) //change mode powerset01 + { + response.progress = Power_Step_01_Mode(((request->delay &0x00FF00)>>8), request->delay &0x0000FF); + response.has_progress = true; + } + else + if((request->amount == 0xAB) && (request->delay == 0xAB)) //Get pressure with flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(true); + response.has_progress = true; + + } + else + if((request->amount == 0xAB) && (request->delay == 0x0)) //measured sensor voltage without flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(false); + response.has_progress = true; + + } + else + if((request->amount == 0xAC) && (request->delay == 0xAC)) //VAC + { + response.progress = ReadVAC(); + response.has_progress = true; + + } + else + if(request->amount == 0x0EAD) //Head Card I/O + { + uint8_t Read_Buf[1] = {0}; + uint8_t Write_Buf[2] = {0,0}; + uint8_t Script_Slave_Add = request -> delay >> 16;//Slave address 0x40 / 0x42 / 0x44 / 0x46 + Write_Buf[0] = (request -> delay & 0x00FF00) >> 8;//read/write low/high + /* + ------------------ + | Byte | WR | RD | + ------------------ + | Low | 02 | 00 | + | High | 03 | 01 | + ------------------ + */ + Write_Buf[1] = request -> delay & 0x0000FF;//data to write + + response.has_progress = false; + + Select_Main_Head_Mux_Channel(); + + if(Write_Buf[0] == 0)//Read + { + //Head_Read_IO_Reg(Script_Slave_Add, LOW); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46) + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + + if(Write_Buf[0] == 1)//Read + { + //Head_Read_IO_Reg(Script_Slave_Add, HIGH); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46)//LS + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + if(Write_Buf[0] == 2)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + Head_I2C_EXP2_0x42.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); + } + + Head_Write_IO_Reg(Script_Slave_Add, LOW); + } + if(Write_Buf[0] == 3)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[1] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + Head_I2C_EXP2_0x42.uchar[1] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP3_0x44.uchar[1] = (Write_Buf[1] & 0x0C); + } + Head_Write_IO_Reg(Script_Slave_Add, HIGH); + } + } + else + if(request->amount == 0xFEAD) //functions Head Card I/O + { + Select_Main_Head_Mux_Channel(); + + if((request -> delay & 0xFFF000) == 0xCAF000)//Actuator + { + //HeadCard_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), /*(bool)((request -> delay & 0x10)>>4), */(bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + Trigger_Head_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), (bool)((request -> delay & 0x10)>>4), (bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + //response.progress = HeadCard_Actuators_Status((ACTUATORS)((request -> delay) & 0x100)>>8); + response.has_progress = true; + } + else + if((request -> delay & 0xFF0000) == 0xCA0000)//control all heaters + { + if(request -> delay & 0x01) + { + Disconnect_Mixer_and_12_Heaters_Latch(); + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, TRUE); + Connect_Mixer_and_12_Heaters_Latch(); + } + else + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, FALSE); + } + else + if(request -> delay == 0x0)//return head type + { + response.progress = Head_Type; + response.has_progress = true; + } + + } + else + if((request->amount == 0xFAC0) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + //Head_Fan_PWM_Command[0] = (request->delay & 0xFF) ; + //Test_Head_fan_Click(); + + Trigger_Head_Fan_Control(HEAD_FAN_RIGHT, request->delay & 0xFF); + Task_sleep(2000); + + //response.progress = Fan_Click_Info.Product_ID; + response.progress = Head_Fan_Tach[0]; + response.has_progress = true; + + } + else + if((request->amount == 0xFAC1) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + Trigger_Head_Fan_Control(HEAD_FAN_LEFT, request->delay & 0xFF); + Task_sleep(2000); + response.progress = Head_Fan_Tach[1]; + response.has_progress = true; + } + else + if ((request->amount & 0x0000FFF0) == 0xFAC0) //WHS Fan control + { + uint16_t fan_tacho = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + Trigger_SetWHSFanSpeed(((request->amount & 0x0000000F)-1) , request->delay & 0x000000FF); + Task_sleep(2000); + fan_tacho = WHS_Get_fan_tach( (request->amount & 0x0000000F)-1); + } + response.progress = fan_tacho; + response.has_progress = true; + } + else + if((request->amount == 0x0A) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Initial_Offset_A[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0xB) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Slope_B[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0x5C4E) && (request->delay == 0x5C4E)) //Screw Home Pos dir + { + test_Home_Pos(); + } + else + if((request->amount == 0x100) && (request->delay == 0x100)) //head card PT100 + { + Test_HeadCard_PT100(TEMP_SENSE_ANALOG_DYEINGH_TEMP1); + //response.progress = (double)Test_Read_Buf[0]; + response.progress = (double)Data_ADC_Head; + response.has_progress = true; + } + else + if((request->amount == 0x0D) && (request->delay == 0xEE)) //Dispenser EEprom + { + test_disp_eeprom(0x01,0xA0); + response.progress = OK; + response.has_progress = true; + } + else + if((request->amount == 0xCF) && (request->delay == 0xCF)) //Create File System on the Drive + { +#ifdef WATCHDOG + ROM_WatchdogResetDisable(WATCHDOG0_BASE); + uint32_t timeout = 0xFFFFFFFFU; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + FRESULT iFResult = Init_Flash_File_System(true); + if(iFResult != FR_OK) + { + LOG_ERROR (iFResult, "Error during init Flash File System"); + assert(iFResult); + } +#ifdef WATCHDOG + ROM_WatchdogResetEnable(WATCHDOG0_BASE); + timeout = 120000000*3; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + } + else + if((request->amount == 0x0C) && (request->delay == 0x0C)) //Get Gas Sensor + { + response.progress = (double)Calculate_Gas_Power_Consumption(); + response.has_progress = true; + + } + else + if((request->amount == 0xDD) && (request->delay == 0xDD)) //Read Input Voltage + { + LOG_ERROR(request->delay,"CheckAcInputVoltage"); + CheckAcInputVoltage(); + + response.progress = (double)Input_Voltage; + response.has_progress = true; + } + else + if((request->amount == 0x0CE) && (request->delay == 0x0CE)) //Get Gas Sensor + { + LOG_ERROR(request->delay,"FlashInit"); + FlashInit(); + response.progress = (double)OK; + response.has_progress = true; + + } + else + if(request->amount == 0x0CC) //Cartridge Validation Response Demo + { + LOG_ERROR(request->delay,"ResponseDemo"); + ResponseDemo(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE0) //fast refresh for pressure + { + LOG_ERROR(request->delay,"setRapidPressureRead"); + setRapidPressureRead(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Starting Dispenser PID"); + IDS_Start_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE2) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Stoping Dispenser PID"); + IDS_Stop_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xB1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Set loading arm center"); + Read_Dryer_ENC_Position(); + Task_sleep(500); + Read_Dryer_ENC_Position(); + Task_sleep(500); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CENTER,Read_Dryer_ENC_Position(0,0)); + response.has_progress = true; + } + else + if(request->amount == 0xB2) //Set loading arm cycles + { + LOG_ERROR(request->delay,"Set loading arm cycles"); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CYCLES,request->delay); + response.has_progress = true; + } + + else + if(request->amount == 0xB3) //fast refresh for pressure + { + LOG_ERROR(request->amount,"keep alive test"); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB4) //IDS_Dispenser_Content_Init + { + LOG_ERROR(request->amount,"IDS_Dispenser_Content_Init"); + IDS_Dispenser_Content_Init(); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB5) //fast refresh for pressure + { + if (request->delay<=100) + { + LOG_ERROR(request->delay,"set stub_heating_limit"); + stub_heating_limit = request->delay; + } + response.progress = request->delay; + response.has_progress = true; + + } +#ifdef VAC_TEST + else + if(request->amount == 0xB6) //fast refresh for pressure + { + LOG_ERROR(request->delay,"set vac read test"); + VAC_Test = (double)request->delay; + response.progress = request->delay; + response.has_progress = true; + + } +#endif + + else + if(request->amount == 0xC3) //suspend I2C task + { + if (request->delay == 0) + { + LOG_ERROR(request->delay,"Suspend I2C"); + PowerOffHeatersOff(); + Task_sleep(1000); + Task_setPri (I2C_Task_Handle,-1); + } + else + { + LOG_ERROR(request->delay,"Resume"); + Task_setPri (I2C_Task_Handle,8); + } + response.progress = request->delay; + response.has_progress = true; + + } + else + if((request->amount == 0xDF) && (request->delay == 0xDF)) //Power off + { + PowerOffInit(); + } + else + if(request->amount == 0xF1) + { + LOG_ERROR(request->delay,"NumberOfRotationPerPassage"); + NumberOfRotationPerPassage = (float)(request->delay)/1000; + } + else + { + response.has_progress = true; + int i = 0; + for (i = 0; i < request->amount; i++) + { + response.progress = i; + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, false, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + + int co = 0; + for (co = 0; co < request->delay; co++) + { + __delay_cycles(1000000); + } + } + } + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, true, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + //writeLine("Progress Completed!"); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + return; + +} diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/915e69509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/915e69509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/915e69509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/a03d038cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/a03d038cb56e001a173da96cce181ab0 deleted file mode 100644 index 937d2aa65..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/a03d038cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/c01d33419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/c01d33419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/c01d33419b71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/c01f1f8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/c01f1f8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/c01f1f8b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/c0a8ef398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/c0a8ef398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/c0a8ef398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/c0ec43f3ef6c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/c0ec43f3ef6c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/c0ec43f3ef6c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/007d4c429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/007d4c429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/007d4c429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/0085aa8db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/0085aa8db56e001a173da96cce181ab0 deleted file mode 100644 index cd2f2e099..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/0085aa8db56e001a173da96cce181ab0 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/1094a8acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/1094a8acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 4448a628e..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/1094a8acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/6019779a8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/6019779a8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/6019779a8f71001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/6024fd4e9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/6024fd4e9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/6024fd4e9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/8041d0e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/8041d0e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/8041d0e39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/907fdfcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/907fdfcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/907fdfcc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/d0dfebe39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/d0dfebe39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/d0dfebe39a71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/d0fb91cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/d0fb91cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/d0fb91cc9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/201b93adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/201b93adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index cb2c2ad65..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/201b93adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../StateMachines/Initialization/InitSequence.c \ -../StateMachines/Initialization/PowerIdle.c \ -../StateMachines/Initialization/PowerOffSequence.c - -C_DEPS += \ -./StateMachines/Initialization/InitSequence.d \ -./StateMachines/Initialization/PowerIdle.d \ -./StateMachines/Initialization/PowerOffSequence.d - -OBJS += \ -./StateMachines/Initialization/InitSequence.obj \ -./StateMachines/Initialization/PowerIdle.obj \ -./StateMachines/Initialization/PowerOffSequence.obj - -OBJS__QUOTED += \ -"StateMachines\Initialization\InitSequence.obj" \ -"StateMachines\Initialization\PowerIdle.obj" \ -"StateMachines\Initialization\PowerOffSequence.obj" - -C_DEPS__QUOTED += \ -"StateMachines\Initialization\InitSequence.d" \ -"StateMachines\Initialization\PowerIdle.d" \ -"StateMachines\Initialization\PowerOffSequence.d" - -C_SRCS__QUOTED += \ -"../StateMachines/Initialization/InitSequence.c" \ -"../StateMachines/Initialization/PowerIdle.c" \ -"../StateMachines/Initialization/PowerOffSequence.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/30623e6d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/30623e6d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/30623e6d8771001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/308834429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/308834429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/308834429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/407e17e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/407e17e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/407e17e78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/603a1c419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/603a1c419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/603a1c419b71001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/e0527b18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/e0527b18b66e001a173da96cce181ab0 deleted file mode 100644 index 1ff1fba33..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/e0527b18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/30c1adcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/30c1adcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/30c1adcc9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/40ac188a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/40ac188a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/40ac188a9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/a0bdf2e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/a0bdf2e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/a0bdf2e39a71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/b0719bcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/b0719bcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/b0719bcc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/b094b76e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/b094b76e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/b094b76e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/c0e67f18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/c0e67f18b66e001a173da96cce181ab0 deleted file mode 100644 index 3a03cd26b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/c0e67f18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/e035876e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/e035876e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/e035876e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/10b8a94f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/10b8a94f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/10b8a94f9571001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/40228a429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/40228a429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/40228a429b71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/a09b229b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/a09b229b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/a09b229b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/a0dbede39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/a0dbede39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/a0dbede39a71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/c06e21e49a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/c06e21e49a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/c06e21e49a71001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/c0c37c16b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/c0c37c16b66e001a173da96cce181ab0 deleted file mode 100644 index 7658bc5b9..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/c0c37c16b66e001a173da96cce181ab0 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ -../Common/Sys_PinOut_Config/Pin.c \ -../Common/Sys_PinOut_Config/Pin_config.c - -C_DEPS += \ -./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ -./Common/Sys_PinOut_Config/Pin.d \ -./Common/Sys_PinOut_Config/Pin_config.d - -OBJS += \ -./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ -./Common/Sys_PinOut_Config/Pin.obj \ -./Common/Sys_PinOut_Config/Pin_config.obj - -OBJS__QUOTED += \ -"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ -"Common\Sys_PinOut_Config\Pin.obj" \ -"Common\Sys_PinOut_Config\Pin_config.obj" - -C_DEPS__QUOTED += \ -"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ -"Common\Sys_PinOut_Config\Pin.d" \ -"Common\Sys_PinOut_Config\Pin_config.d" - -C_SRCS__QUOTED += \ -"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ -"../Common/Sys_PinOut_Config/Pin.c" \ -"../Common/Sys_PinOut_Config/Pin_config.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/c1d6113a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/c1d6113a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/c1d6113a8871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/e00a62ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/e00a62ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/e00a62ab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/e03f6eab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/e03f6eab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/e03f6eab9071001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/60ac80429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/60ac80429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/60ac80429b71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/60d5ddb8f36c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/60d5ddb8f36c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/60d5ddb8f36c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/900386429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/900386429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/900386429b71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/b001e1b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/b001e1b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/b001e1b48771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/b0d7dfa99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/b0d7dfa99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/b0d7dfa99071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/0057cee19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/0057cee19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/0057cee19a71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/90a917adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/90a917adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index c49132708..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/90a917adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/a004c28db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/a004c28db56e001a173da96cce181ab0 deleted file mode 100644 index 522384cb6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/a004c28db56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/FPGA/Motors_Driver/L6470.c - -C_DEPS += \ -./Drivers/FPGA/Motors_Driver/L6470.d - -OBJS += \ -./Drivers/FPGA/Motors_Driver/L6470.obj - -OBJS__QUOTED += \ -"Drivers\FPGA\Motors_Driver\L6470.obj" - -C_DEPS__QUOTED += \ -"Drivers\FPGA\Motors_Driver\L6470.d" - -C_SRCS__QUOTED += \ -"../Drivers/FPGA/Motors_Driver/L6470.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/a02ebc4f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/a02ebc4f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/a02ebc4f9571001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/b038736e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/b038736e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/b038736e8771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/b0ca2acb9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/b0ca2acb9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/b0ca2acb9071001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/b0d9ab8cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/b0d9ab8cb56e001a173da96cce181ab0 deleted file mode 100644 index b27c5e3b8..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/b0d9ab8cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,62 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ -../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ -../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ -../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ -../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ -../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ -../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c - -C_DEPS += \ -./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ -./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ -./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ -./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ -./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ -./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ -./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d - -OBJS += \ -./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ -./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ -./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ -./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ -./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ -./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ -./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ -"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ -"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ -"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ -"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ -"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ -"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ -"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ -"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ -"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ -"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ -"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ -"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ -"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ -"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ -"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ -"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ -"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ -"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/c040166d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/c040166d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/c040166d8771001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/c132fc9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/c132fc9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/c132fc9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/d01e26e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/d01e26e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/d01e26e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/10bf86adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/10bf86adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 98cd1f3ec..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/10bf86adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,56 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/Thread/ThreadLoad.c \ -../Modules/Thread/Thread_BIT.c \ -../Modules/Thread/Thread_Winder.c \ -../Modules/Thread/Thread_init.c \ -../Modules/Thread/Thread_maint.c \ -../Modules/Thread/Thread_print.c - -C_DEPS += \ -./Modules/Thread/ThreadLoad.d \ -./Modules/Thread/Thread_BIT.d \ -./Modules/Thread/Thread_Winder.d \ -./Modules/Thread/Thread_init.d \ -./Modules/Thread/Thread_maint.d \ -./Modules/Thread/Thread_print.d - -OBJS += \ -./Modules/Thread/ThreadLoad.obj \ -./Modules/Thread/Thread_BIT.obj \ -./Modules/Thread/Thread_Winder.obj \ -./Modules/Thread/Thread_init.obj \ -./Modules/Thread/Thread_maint.obj \ -./Modules/Thread/Thread_print.obj - -OBJS__QUOTED += \ -"Modules\Thread\ThreadLoad.obj" \ -"Modules\Thread\Thread_BIT.obj" \ -"Modules\Thread\Thread_Winder.obj" \ -"Modules\Thread\Thread_init.obj" \ -"Modules\Thread\Thread_maint.obj" \ -"Modules\Thread\Thread_print.obj" - -C_DEPS__QUOTED += \ -"Modules\Thread\ThreadLoad.d" \ -"Modules\Thread\Thread_BIT.d" \ -"Modules\Thread\Thread_Winder.d" \ -"Modules\Thread\Thread_init.d" \ -"Modules\Thread\Thread_maint.d" \ -"Modules\Thread\Thread_print.d" - -C_SRCS__QUOTED += \ -"../Modules/Thread/ThreadLoad.c" \ -"../Modules/Thread/Thread_BIT.c" \ -"../Modules/Thread/Thread_Winder.c" \ -"../Modules/Thread/Thread_init.c" \ -"../Modules/Thread/Thread_maint.c" \ -"../Modules/Thread/Thread_print.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/202883509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/202883509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/202883509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/20300918b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/20300918b66e001a173da96cce181ab0 deleted file mode 100644 index f07a9a1c6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/20300918b66e001a173da96cce181ab0 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/20c1cbb38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/20c1cbb38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/20c1cbb38771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/2156c2b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/2156c2b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/2156c2b48771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/30638a17b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/30638a17b66e001a173da96cce181ab0 deleted file mode 100644 index c16845ede..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/30638a17b66e001a173da96cce181ab0 +++ /dev/null @@ -1,183 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/30804d3a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/30804d3a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/30804d3a8871001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/700897ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/700897ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/700897ac9071001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/80e074e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/80e074e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/80e074e78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/d02cf8cb9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/d02cf8cb9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/d02cf8cb9071001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/f02e268cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/f02e268cb56e001a173da96cce181ab0 deleted file mode 100644 index e842fb84f..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/f02e268cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,62 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Connection/ConnectRequest.pb-c.c \ -../Communication/PMR/Connection/ConnectResponse.pb-c.c \ -../Communication/PMR/Connection/DeviceInformation.pb-c.c \ -../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ -../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ -../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ -../Communication/PMR/Connection/KeepAliveResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/Connection/ConnectRequest.pb-c.d \ -./Communication/PMR/Connection/ConnectResponse.pb-c.d \ -./Communication/PMR/Connection/DeviceInformation.pb-c.d \ -./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ -./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ -./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ -./Communication/PMR/Connection/KeepAliveResponse.pb-c.d - -OBJS += \ -./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ -./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ -./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ -./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ -./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ -./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ -./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ -"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ -"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ -"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ -"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ -"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ -"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ -"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ -"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ -"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ -"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ -"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ -"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ -"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ -"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ -"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ -"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ -"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ -"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/f0e53a419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/f0e53a419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/f0e53a419b71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/0094e0acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/0094e0acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 1ff1fba33..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/0094e0acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/20c2ef6b8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/20c2ef6b8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/20c2ef6b8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/40d8bf429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/40d8bf429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/40d8bf429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/509ff3b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/509ff3b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/509ff3b48771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/805d76cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/805d76cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/805d76cc9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/c0329d18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/c0329d18b66e001a173da96cce181ab0 deleted file mode 100644 index 73e3151bc..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/c0329d18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/c0c1f99b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/c0c1f99b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/c0c1f99b8f71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/f149bf398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/f149bf398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/f149bf398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/104bcf8db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/104bcf8db56e001a173da96cce181ab0 deleted file mode 100644 index 47bbb9bfd..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/104bcf8db56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/10e70c6c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/10e70c6c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/10e70c6c8771001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/707d8bca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/707d8bca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/707d8bca9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/a0141219b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/a0141219b66e001a173da96cce181ab0 deleted file mode 100644 index 3183fef2d..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/a0141219b66e001a173da96cce181ab0 +++ /dev/null @@ -1,853 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS - -GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" -GEN_CMDS__FLAG := -l"configPkg/linker.cmd" - -ORDERED_OBJS += \ -"./Main.obj" \ -"./delay.obj" \ -"./Common/SWUpdate/FileSystem.obj" \ -"./Common/SWUpdate/FirmwareUpgrade.obj" \ -"./Common/SW_Info/SW_Info.obj" \ -"./Common/Software_CRC/sw_crc.obj" \ -"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ -"./Common/Sys_PinOut_Config/Pin.obj" \ -"./Common/Sys_PinOut_Config/Pin_config.obj" \ -"./Common/Utilities/RFIDTagHandling.obj" \ -"./Common/Utilities/Update.obj" \ -"./Common/Utilities/Utils.obj" \ -"./Common/Utilities/idle_task.obj" \ -"./Common/Utilities/ustdlib.obj" \ -"./Common/protobuf-c/protobuf-c.obj" \ -"./Common/report/distributor.obj" \ -"./Common/report/filter.obj" \ -"./Common/report/reportInit.obj" \ -"./Communication/CommunicationTask.obj" \ -"./Communication/Connection.obj" \ -"./Communication/Container.obj" \ -"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ -"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ -"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ -"./Communication/PMR/Common/MessageType.pb-c.obj" \ -"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ -"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ -"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ -"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ -"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ -"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ -"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ -"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ -"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ -"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ -"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ -"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ -"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ -"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ -"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ -"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ -"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ -"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ -"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ -"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ -"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ -"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ -"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ -"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ -"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ -"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ -"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ -"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ -"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ -"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ -"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ -"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ -"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ -"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ -"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ -"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ -"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ -"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ -"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ -"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ -"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ -"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ -"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ -"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ -"./Communication/PMR/IO/FileInfo.pb-c.obj" \ -"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ -"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ -"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ -"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ -"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ -"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ -"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ -"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ -"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ -"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ -"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ -"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ -"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ -"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ -"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ -"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ -"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ -"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ -"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ -"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ -"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ -"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ -"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ -"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ -"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ -"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ -"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ -"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ -"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ -"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ -"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ -"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ -"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ -"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ -"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ -"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ -"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ -"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ -"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ -"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ -"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ -"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ -"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ -"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ -"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ -"./Drivers/ADC_Sampling/ADC.obj" \ -"./Drivers/ADC_Sampling/ADC_VAC.obj" \ -"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ -"./Drivers/FPGA/FPGA.obj" \ -"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ -"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ -"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ -"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ -"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ -"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ -"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ -"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ -"./Drivers/FPGA/Motors_Driver/L6470.obj" \ -"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ -"./Drivers/Flash_Memory/FATFS/cc932.obj" \ -"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ -"./Drivers/Flash_Memory/FATFS/ff.obj" \ -"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ -"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ -"./Drivers/Flash_Memory/Flash_Memory.obj" \ -"./Drivers/Heater/ADS1220.obj" \ -"./Drivers/Heater/Heater.obj" \ -"./Drivers/Heater/TemperatureSensor.obj" \ -"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ -"./Drivers/I2C_Communication/DAC/Blower.obj" \ -"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ -"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ -"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ -"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ -"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ -"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ -"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ -"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ -"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ -"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ -"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ -"./Drivers/I2C_Communication/I2C.obj" \ -"./Drivers/I2C_Communication/I2C_Comm.obj" \ -"./Drivers/I2C_Communication/I2C_FIFO.obj" \ -"./Drivers/I2C_Communication/I2C_Task.obj" \ -"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ -"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ -"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ -"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ -"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ -"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ -"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ -"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ -"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ -"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ -"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ -"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ -"./Drivers/Motors/Motor.obj" \ -"./Drivers/Motors/MotorActions.obj" \ -"./Drivers/On_Chip_Flash/Flashstore.obj" \ -"./Drivers/SPI/SPI_Comm.obj" \ -"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ -"./Drivers/SSI_Comm/SSI_Comm.obj" \ -"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ -"./Drivers/USB_Communication/USBCDCD.obj" \ -"./Drivers/Uart_Comm/Modbus/modbus-data.obj" \ -"./Drivers/Uart_Comm/Modbus/modbus-rtu.obj" \ -"./Drivers/Uart_Comm/Modbus/modbus-tcp.obj" \ -"./Drivers/Uart_Comm/Modbus/modbus.obj" \ -"./Drivers/Uart_Comm/Uart.obj" \ -"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ -"./Drivers/Valves/Valve.obj" \ -"./Drivers/flash_ram/FlashProgram.obj" \ -"./Drivers/flash_ram/MCU_E2Prom.obj" \ -"./Modules/AlarmHandling/AlarmHandling.obj" \ -"./Modules/Control/DriverWithCallbackExample.obj" \ -"./Modules/Control/MillisecTask.obj" \ -"./Modules/Control/PIDAlgo.obj" \ -"./Modules/Control/control.obj" \ -"./Modules/Diagnostics/DiagnosticActions.obj" \ -"./Modules/Diagnostics/Diagnostics.obj" \ -"./Modules/Diagnostics/DiagnosticsHoming.obj" \ -"./Modules/Diagnostics/DiagnosticsJogging.obj" \ -"./Modules/General/GeneralHardware.obj" \ -"./Modules/General/MachineStatus.obj" \ -"./Modules/General/Safety.obj" \ -"./Modules/General/buttons.obj" \ -"./Modules/General/process.obj" \ -"./Modules/Heaters/Heaters_bit.obj" \ -"./Modules/Heaters/Heaters_init.obj" \ -"./Modules/Heaters/Heaters_maint.obj" \ -"./Modules/Heaters/Heaters_print.obj" \ -"./Modules/IDS/IDS_BIT.obj" \ -"./Modules/IDS/IDS_Cleaning.obj" \ -"./Modules/IDS/IDS_dispenser.obj" \ -"./Modules/IDS/IDS_init.obj" \ -"./Modules/IDS/IDS_maint.obj" \ -"./Modules/IDS/IDS_print.obj" \ -"./Modules/IFS/ifs.obj" \ -"./Modules/Stubs_Handler/Calculate.obj" \ -"./Modules/Stubs_Handler/Progress.obj" \ -"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ -"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ -"./Modules/Stubs_Handler/Stub_Dancer.obj" \ -"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ -"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ -"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ -"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ -"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ -"./Modules/Stubs_Handler/Stub_GPIO.obj" \ -"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ -"./Modules/Stubs_Handler/Stub_Heater.obj" \ -"./Modules/Stubs_Handler/Stub_I2C.obj" \ -"./Modules/Stubs_Handler/Stub_IntADC.obj" \ -"./Modules/Stubs_Handler/Stub_L6470.obj" \ -"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ -"./Modules/Stubs_Handler/Stub_Motor.obj" \ -"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ -"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ -"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ -"./Modules/Stubs_Handler/Stub_Status.obj" \ -"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ -"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ -"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ -"./Modules/Stubs_Handler/Stub_Valve.obj" \ -"./Modules/Stubs_Handler/User_Leds.obj" \ -"./Modules/Stubs_Handler/temperature_sensor.obj" \ -"./Modules/Thread/ThreadLoad.obj" \ -"./Modules/Thread/Thread_BIT.obj" \ -"./Modules/Thread/Thread_Winder.obj" \ -"./Modules/Thread/Thread_init.obj" \ -"./Modules/Thread/Thread_maint.obj" \ -"./Modules/Thread/Thread_print.obj" \ -"./Modules/Waste/Waste_BIT.obj" \ -"./Modules/Waste/Waste_init.obj" \ -"./Modules/Waste/Waste_maint.obj" \ -"./Modules/Waste/Waste_print.obj" \ -"./Modules/Waste/newWHS_init.obj" \ -"./StateMachines/Initialization/InitSequence.obj" \ -"./StateMachines/Initialization/PowerIdle.obj" \ -"./StateMachines/Initialization/PowerOffSequence.obj" \ -"./StateMachines/Printing/JobSTM.obj" \ -"./StateMachines/Printing/PrintingSTM.obj" \ -"../tm4c129xnczad.cmd" \ -$(GEN_CMDS__FLAG) \ --l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ --l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ --l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ --llibc.a \ - --include ../makefile.init - -RM := DEL /F -RMDIR := RMDIR /S/Q - -# All of the sources participating in the build are defined here --include sources.mk --include subdir_vars.mk --include Common/SWUpdate/subdir_vars.mk --include Common/SW_Info/subdir_vars.mk --include Common/Software_CRC/subdir_vars.mk --include Common/Sys_PinOut_Config/subdir_vars.mk --include Common/Utilities/subdir_vars.mk --include Common/protobuf-c/subdir_vars.mk --include Common/report/subdir_vars.mk --include Communication/subdir_vars.mk --include Communication/PMR/Common/subdir_vars.mk --include Communication/PMR/Connection/subdir_vars.mk --include Communication/PMR/Debugging/subdir_vars.mk --include Communication/PMR/Diagnostics/subdir_vars.mk --include Communication/PMR/EmbeddedParameters/subdir_vars.mk --include Communication/PMR/FirmwareUpgrade/subdir_vars.mk --include Communication/PMR/Hardware/subdir_vars.mk --include Communication/PMR/IO/subdir_vars.mk --include Communication/PMR/MachineStatus/subdir_vars.mk --include Communication/PMR/Power/subdir_vars.mk --include Communication/PMR/Printing/subdir_vars.mk --include Communication/PMR/Stubs/subdir_vars.mk --include Communication/PMR/ThreadLoading/subdir_vars.mk --include Drivers/ADC_Sampling/subdir_vars.mk --include Drivers/FPGA/subdir_vars.mk --include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk --include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk --include Drivers/FPGA/Full_Vme/subdir_vars.mk --include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk --include Drivers/FPGA/Motors_Driver/subdir_vars.mk --include Drivers/Flash_Memory/FATFS/subdir_vars.mk --include Drivers/Flash_Memory/subdir_vars.mk --include Drivers/Heater/subdir_vars.mk --include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk --include Drivers/I2C_Communication/DAC/subdir_vars.mk --include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk --include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk --include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk --include Drivers/I2C_Communication/subdir_vars.mk --include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk --include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk --include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk --include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk --include Drivers/Motors/subdir_vars.mk --include Drivers/On_Chip_Flash/subdir_vars.mk --include Drivers/SPI/subdir_vars.mk --include Drivers/SSI_Comm/Dancer/subdir_vars.mk --include Drivers/SSI_Comm/subdir_vars.mk --include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk --include Drivers/USB_Communication/subdir_vars.mk --include Drivers/Uart_Comm/Modbus/subdir_vars.mk --include Drivers/Uart_Comm/subdir_vars.mk --include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk --include Drivers/Valves/subdir_vars.mk --include Drivers/flash_ram/subdir_vars.mk --include Modules/AlarmHandling/subdir_vars.mk --include Modules/Control/subdir_vars.mk --include Modules/Diagnostics/subdir_vars.mk --include Modules/General/subdir_vars.mk --include Modules/Heaters/subdir_vars.mk --include Modules/IDS/subdir_vars.mk --include Modules/IFS/subdir_vars.mk --include Modules/Stubs_Handler/subdir_vars.mk --include Modules/Thread/subdir_vars.mk --include Modules/Waste/subdir_vars.mk --include StateMachines/Initialization/subdir_vars.mk --include StateMachines/Printing/subdir_vars.mk --include subdir_rules.mk --include Common/SWUpdate/subdir_rules.mk --include Common/SW_Info/subdir_rules.mk --include Common/Software_CRC/subdir_rules.mk --include Common/Sys_PinOut_Config/subdir_rules.mk --include Common/Utilities/subdir_rules.mk --include Common/protobuf-c/subdir_rules.mk --include Common/report/subdir_rules.mk --include Communication/subdir_rules.mk --include Communication/PMR/Common/subdir_rules.mk --include Communication/PMR/Connection/subdir_rules.mk --include Communication/PMR/Debugging/subdir_rules.mk --include Communication/PMR/Diagnostics/subdir_rules.mk --include Communication/PMR/EmbeddedParameters/subdir_rules.mk --include Communication/PMR/FirmwareUpgrade/subdir_rules.mk --include Communication/PMR/Hardware/subdir_rules.mk --include Communication/PMR/IO/subdir_rules.mk --include Communication/PMR/MachineStatus/subdir_rules.mk --include Communication/PMR/Power/subdir_rules.mk --include Communication/PMR/Printing/subdir_rules.mk --include Communication/PMR/Stubs/subdir_rules.mk --include Communication/PMR/ThreadLoading/subdir_rules.mk --include Drivers/ADC_Sampling/subdir_rules.mk --include Drivers/FPGA/subdir_rules.mk --include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk --include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk --include Drivers/FPGA/Full_Vme/subdir_rules.mk --include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk --include Drivers/FPGA/Motors_Driver/subdir_rules.mk --include Drivers/Flash_Memory/FATFS/subdir_rules.mk --include Drivers/Flash_Memory/subdir_rules.mk --include Drivers/Heater/subdir_rules.mk --include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk --include Drivers/I2C_Communication/DAC/subdir_rules.mk --include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk --include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk --include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk --include Drivers/I2C_Communication/subdir_rules.mk --include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk --include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk --include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk --include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk --include Drivers/Motors/subdir_rules.mk --include Drivers/On_Chip_Flash/subdir_rules.mk --include Drivers/SPI/subdir_rules.mk --include Drivers/SSI_Comm/Dancer/subdir_rules.mk --include Drivers/SSI_Comm/subdir_rules.mk --include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk --include Drivers/USB_Communication/subdir_rules.mk --include Drivers/Uart_Comm/Modbus/subdir_rules.mk --include Drivers/Uart_Comm/subdir_rules.mk --include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk --include Drivers/Valves/subdir_rules.mk --include Drivers/flash_ram/subdir_rules.mk --include Modules/AlarmHandling/subdir_rules.mk --include Modules/Control/subdir_rules.mk --include Modules/Diagnostics/subdir_rules.mk --include Modules/General/subdir_rules.mk --include Modules/Heaters/subdir_rules.mk --include Modules/IDS/subdir_rules.mk --include Modules/IFS/subdir_rules.mk --include Modules/Stubs_Handler/subdir_rules.mk --include Modules/Thread/subdir_rules.mk --include Modules/Waste/subdir_rules.mk --include StateMachines/Initialization/subdir_rules.mk --include StateMachines/Printing/subdir_rules.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C55_DEPS)),) --include $(C55_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -ifneq ($(strip $(S67_DEPS)),) --include $(S67_DEPS) -endif -ifneq ($(strip $(S62_DEPS)),) --include $(S62_DEPS) -endif -ifneq ($(strip $(S_DEPS)),) --include $(S_DEPS) -endif -ifneq ($(strip $(OPT_DEPS)),) --include $(OPT_DEPS) -endif -ifneq ($(strip $(C??_DEPS)),) --include $(C??_DEPS) -endif -ifneq ($(strip $(ASM_UPPER_DEPS)),) --include $(ASM_UPPER_DEPS) -endif -ifneq ($(strip $(S??_DEPS)),) --include $(S??_DEPS) -endif -ifneq ($(strip $(C64_DEPS)),) --include $(C64_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(S64_DEPS)),) --include $(S64_DEPS) -endif -ifneq ($(strip $(INO_DEPS)),) --include $(INO_DEPS) -endif -ifneq ($(strip $(CLA_DEPS)),) --include $(CLA_DEPS) -endif -ifneq ($(strip $(S55_DEPS)),) --include $(S55_DEPS) -endif -ifneq ($(strip $(SV7A_DEPS)),) --include $(SV7A_DEPS) -endif -ifneq ($(strip $(C62_DEPS)),) --include $(C62_DEPS) -endif -ifneq ($(strip $(C67_DEPS)),) --include $(C67_DEPS) -endif -ifneq ($(strip $(PDE_DEPS)),) --include $(PDE_DEPS) -endif -ifneq ($(strip $(K_DEPS)),) --include $(K_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(C43_DEPS)),) --include $(C43_DEPS) -endif -ifneq ($(strip $(S43_DEPS)),) --include $(S43_DEPS) -endif -ifneq ($(strip $(ASM_DEPS)),) --include $(ASM_DEPS) -endif -ifneq ($(strip $(S_UPPER_DEPS)),) --include $(S_UPPER_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(SA_DEPS)),) --include $(SA_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables -EXE_OUTPUTS += \ -Embedded.out \ - -EXE_OUTPUTS__QUOTED += \ -"Embedded.out" \ - -BIN_OUTPUTS += \ -Embedded.bin \ - -BIN_OUTPUTS__QUOTED += \ -"Embedded.bin" \ - - -# All Target -all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) - @$(MAKE) --no-print-directory -Onone "Embedded.out" - -# Tool invocations -Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) - @echo 'Building target: $@' - @echo 'Invoking: ARM Linker' - @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' - $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") - $(shell type "ccsObjs.opt" >> "ccsLinker.opt") - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" - @echo 'Finished building target: $@' - @echo ' ' - @$(MAKE) --no-print-directory post-build - -Embedded.bin: $(EXE_OUTPUTS) - @echo 'Invoking: ARM Hex Utility' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) - @echo 'Finished building: $@' - @echo ' ' - @$(MAKE) --no-print-directory post-build - -# Other Targets -clean: - -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) - -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) - -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" - -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" - -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" - -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" - -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" - -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" - -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" - -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" - -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" - -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" - -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" - -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" - -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" - -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" - -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" - -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\modbus-data.obj" "Drivers\Uart_Comm\Modbus\modbus-rtu.obj" "Drivers\Uart_Comm\Modbus\modbus-tcp.obj" "Drivers\Uart_Comm\Modbus\modbus.obj" "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" - -$(RM) "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" - -$(RM) "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" - -$(RM) "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" - -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" - -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" - -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" - -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" - -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" - -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" - -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" - -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" - -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" - -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" - -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" - -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" - -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" - -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" - -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" - -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\modbus-data.d" "Drivers\Uart_Comm\Modbus\modbus-rtu.d" "Drivers\Uart_Comm\Modbus\modbus-tcp.d" "Drivers\Uart_Comm\Modbus\modbus.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" - -$(RM) "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" - -$(RM) "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" - -$(RM) "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" - -@echo 'Finished clean' - -@echo ' ' - -post-build: - -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" - -@echo ' ' - -.PHONY: all clean dependents -.SECONDARY: - --include ../makefile.targets - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/a02ec69b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/a02ec69b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/a02ec69b8f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/a0a71baab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/a0a71baab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 937d2aa65..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/a0a71baab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/a0f70718b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/a0f70718b66e001a173da96cce181ab0 deleted file mode 100644 index 071c9375d..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/a0f70718b66e001a173da96cce181ab0 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/ADC_Sampling/ADC.c \ -../Drivers/ADC_Sampling/ADC_VAC.c \ -../Drivers/ADC_Sampling/ADC_VOC_Sensor.c - -C_DEPS += \ -./Drivers/ADC_Sampling/ADC.d \ -./Drivers/ADC_Sampling/ADC_VAC.d \ -./Drivers/ADC_Sampling/ADC_VOC_Sensor.d - -OBJS += \ -./Drivers/ADC_Sampling/ADC.obj \ -./Drivers/ADC_Sampling/ADC_VAC.obj \ -./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj - -OBJS__QUOTED += \ -"Drivers\ADC_Sampling\ADC.obj" \ -"Drivers\ADC_Sampling\ADC_VAC.obj" \ -"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" - -C_DEPS__QUOTED += \ -"Drivers\ADC_Sampling\ADC.d" \ -"Drivers\ADC_Sampling\ADC_VAC.d" \ -"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" - -C_SRCS__QUOTED += \ -"../Drivers/ADC_Sampling/ADC.c" \ -"../Drivers/ADC_Sampling/ADC_VAC.c" \ -"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/01998d8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/01998d8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/01998d8b9571001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/105b7dab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/105b7dab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/105b7dab9071001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/2056c2b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/2056c2b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/2056c2b48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/21c1cbb38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/21c1cbb38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/21c1cbb38771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/30a81c9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/30a81c9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/30a81c9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/90b05e6c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/90b05e6c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/90b05e6c8771001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/c04b9ee58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/c04b9ee58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/c04b9ee58f71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/f076a9b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/f076a9b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/f076a9b48771001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/200275e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/200275e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/200275e39a71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/40281d9c8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/40281d9c8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/40281d9c8f71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/40665c509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/40665c509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/40665c509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/4091bcacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/4091bcacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 125bfabce..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/4091bcacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/50246ee39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/50246ee39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/50246ee39a71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/205ae3a99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/205ae3a99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/205ae3a99071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/305158acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/305158acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 071c9375d..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/305158acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/ADC_Sampling/ADC.c \ -../Drivers/ADC_Sampling/ADC_VAC.c \ -../Drivers/ADC_Sampling/ADC_VOC_Sensor.c - -C_DEPS += \ -./Drivers/ADC_Sampling/ADC.d \ -./Drivers/ADC_Sampling/ADC_VAC.d \ -./Drivers/ADC_Sampling/ADC_VOC_Sensor.d - -OBJS += \ -./Drivers/ADC_Sampling/ADC.obj \ -./Drivers/ADC_Sampling/ADC_VAC.obj \ -./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj - -OBJS__QUOTED += \ -"Drivers\ADC_Sampling\ADC.obj" \ -"Drivers\ADC_Sampling\ADC_VAC.obj" \ -"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" - -C_DEPS__QUOTED += \ -"Drivers\ADC_Sampling\ADC.d" \ -"Drivers\ADC_Sampling\ADC_VAC.d" \ -"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" - -C_SRCS__QUOTED += \ -"../Drivers/ADC_Sampling/ADC.c" \ -"../Drivers/ADC_Sampling/ADC_VAC.c" \ -"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/50cd01ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/50cd01ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/50cd01ac9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/50d4326e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/50d4326e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/50d4326e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/70667aca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/70667aca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/70667aca9071001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/80785a3a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/80785a3a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/80785a3a8871001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/80f2eee78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/80f2eee78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/80f2eee78f71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/a040b88db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/a040b88db56e001a173da96cce181ab0 deleted file mode 100644 index 43102a930..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/a040b88db56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c - -C_DEPS += \ -./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d - -OBJS += \ -./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj - -OBJS__QUOTED += \ -"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" - -C_DEPS__QUOTED += \ -"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" - -C_SRCS__QUOTED += \ -"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/e02a6dcb9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/e02a6dcb9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/e02a6dcb9071001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/1015a06e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/1015a06e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/1015a06e8771001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/207a329b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/207a329b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/207a329b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/20b5e6e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/20b5e6e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/20b5e6e78f71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/30d8874f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/30d8874f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/30d8874f9571001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/600dad6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/600dad6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/600dad6e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/6095f2acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/6095f2acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 1c8fe48c2..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/6095f2acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ -../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ -./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ -./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ -"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ -"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ -"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/70e1a56e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/70e1a56e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/70e1a56e8771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/80eec8e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/80eec8e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/80eec8e39a71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/903e259c8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/903e259c8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/903e259c8f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/91343d6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/91343d6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/91343d6e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/b0d107e88f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/b0d107e88f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/b0d107e88f71001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/c0203f10086d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/c0203f10086d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/c0203f10086d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/e0511917b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/e0511917b66e001a173da96cce181ab0 deleted file mode 100644 index 5880cb66d..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/e0511917b66e001a173da96cce181ab0 +++ /dev/null @@ -1,57 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/107eb118b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/107eb118b66e001a173da96cce181ab0 deleted file mode 100644 index 49e799865..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/107eb118b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Valves/Valve.c - -C_DEPS += \ -./Drivers/Valves/Valve.d - -OBJS += \ -./Drivers/Valves/Valve.obj - -OBJS__QUOTED += \ -"Drivers\Valves\Valve.obj" - -C_DEPS__QUOTED += \ -"Drivers\Valves\Valve.d" - -C_SRCS__QUOTED += \ -"../Drivers/Valves/Valve.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/20b8e1429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/20b8e1429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/20b8e1429b71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/8078a118b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/8078a118b66e001a173da96cce181ab0 deleted file mode 100644 index 805d9d685..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/8078a118b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c - -C_DEPS += \ -./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d - -OBJS += \ -./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj - -OBJS__QUOTED += \ -"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" - -C_DEPS__QUOTED += \ -"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" - -C_SRCS__QUOTED += \ -"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/90b2d1429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/90b2d1429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/90b2d1429b71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/a079f1ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/a079f1ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/a079f1ab9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/b073eecc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/b073eecc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/b073eecc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/b111838b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/b111838b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/b111838b9571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/e0178c6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/e0178c6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/e0178c6e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/10aa256d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/10aa256d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/10aa256d8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/203dc38db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/203dc38db56e001a173da96cce181ab0 deleted file mode 100644 index 69342426c..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/203dc38db56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/20aa358a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/20aa358a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/20aa358a9571001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/3053086c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/3053086c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/3053086c8771001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/308d648b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/308d648b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/308d648b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/30f4a9ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/30f4a9ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/30f4a9ac9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/507310ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/507310ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/507310ac9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/50dc83ca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/50dc83ca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/50dc83ca9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/600429ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/600429ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/600429ac9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/70ac0fcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/70ac0fcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/70ac0fcc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/8017c618b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/8017c618b66e001a173da96cce181ab0 deleted file mode 100644 index 790d8e600..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/8017c618b66e001a173da96cce181ab0 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/General/GeneralHardware.c \ -../Modules/General/MachineStatus.c \ -../Modules/General/Safety.c \ -../Modules/General/buttons.c \ -../Modules/General/process.c - -C_DEPS += \ -./Modules/General/GeneralHardware.d \ -./Modules/General/MachineStatus.d \ -./Modules/General/Safety.d \ -./Modules/General/buttons.d \ -./Modules/General/process.d - -OBJS += \ -./Modules/General/GeneralHardware.obj \ -./Modules/General/MachineStatus.obj \ -./Modules/General/Safety.obj \ -./Modules/General/buttons.obj \ -./Modules/General/process.obj - -OBJS__QUOTED += \ -"Modules\General\GeneralHardware.obj" \ -"Modules\General\MachineStatus.obj" \ -"Modules\General\Safety.obj" \ -"Modules\General\buttons.obj" \ -"Modules\General\process.obj" - -C_DEPS__QUOTED += \ -"Modules\General\GeneralHardware.d" \ -"Modules\General\MachineStatus.d" \ -"Modules\General\Safety.d" \ -"Modules\General\buttons.d" \ -"Modules\General\process.d" - -C_SRCS__QUOTED += \ -"../Modules/General/GeneralHardware.c" \ -"../Modules/General/MachineStatus.c" \ -"../Modules/General/Safety.c" \ -"../Modules/General/buttons.c" \ -"../Modules/General/process.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/904c9a18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/904c9a18b66e001a173da96cce181ab0 deleted file mode 100644 index 9a06f1546..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/904c9a18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/90aa8fab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/90aa8fab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/90aa8fab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/90e551cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/90e551cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/90e551cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/b04a1fadb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/b04a1fadb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 49e799865..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/b04a1fadb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Valves/Valve.c - -C_DEPS += \ -./Drivers/Valves/Valve.d - -OBJS += \ -./Drivers/Valves/Valve.obj - -OBJS__QUOTED += \ -"Drivers\Valves\Valve.obj" - -C_DEPS__QUOTED += \ -"Drivers\Valves\Valve.d" - -C_SRCS__QUOTED += \ -"../Drivers/Valves/Valve.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/008570e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/008570e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/008570e58f71001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/10d32d82f56c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/10d32d82f56c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/10d32d82f56c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/3094b5419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/3094b5419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/3094b5419b71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/312e946e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/312e946e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/312e946e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/40feb3b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/40feb3b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/40feb3b48771001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/604ba5429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/604ba5429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/604ba5429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/609d1fd60d6d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/609d1fd60d6d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/609d1fd60d6d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/d00d0ccd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/d00d0ccd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/d00d0ccd9071001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/f068508b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/f068508b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/f068508b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/00e2679b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/00e2679b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/00e2679b8f71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/10f3e816b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/10f3e816b66e001a173da96cce181ab0 deleted file mode 100644 index ddddab698..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/10f3e816b66e001a173da96cce181ab0 +++ /dev/null @@ -1,106 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/20bd82ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/20bd82ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/20bd82ac9071001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/20ec248b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/20ec248b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/20ec248b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/50cfcdacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/50cfcdacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 3a2873b0a..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/50cfcdacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Thermo_K/MCP9600.c - -C_DEPS += \ -./Drivers/I2C_Communication/Thermo_K/MCP9600.d - -OBJS += \ -./Drivers/I2C_Communication/Thermo_K/MCP9600.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Thermo_K\MCP9600.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/50f1138a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/50f1138a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/50f1138a9571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/6040666e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/6040666e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/6040666e8771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/6080a5398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/6080a5398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/6080a5398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/b0e2709b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/b0e2709b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/b0e2709b8f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/d007cfacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/d007cfacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 0a0915c73..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/d007cfacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/d17619b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/d17619b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/d17619b58771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/f06fdc16b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/f06fdc16b66e001a173da96cce181ab0 deleted file mode 100644 index c909f2ae6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/f06fdc16b66e001a173da96cce181ab0 +++ /dev/null @@ -1,410 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ -../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ -../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ -../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ -../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ -../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ -../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ -../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ -../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ -../Communication/PMR/Diagnostics/Event.pb-c.c \ -../Communication/PMR/Diagnostics/EventType.pb-c.c \ -../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ -../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ -../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ -../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ -../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ -../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ -../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ -../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ -../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ -../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ -../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ -../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ -../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ -../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ -../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ -../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ -../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ -../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ -../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ -../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ -../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ -../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ -../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ -../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ -../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ -../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ -../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ -../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ -../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ -../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ -../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ -../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ -../Communication/PMR/Diagnostics/ValveState.pb-c.c \ -../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ -../Communication/PMR/Diagnostics/ValveType.pb-c.c - -C_DEPS += \ -./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ -./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ -./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ -./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ -./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ -./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ -./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ -./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ -./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ -./Communication/PMR/Diagnostics/Event.pb-c.d \ -./Communication/PMR/Diagnostics/EventType.pb-c.d \ -./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ -./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ -./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ -./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ -./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ -./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ -./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ -./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ -./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ -./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ -./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ -./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ -./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ -./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ -./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ -./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ -./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ -./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ -./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ -./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ -./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ -./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ -./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ -./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ -./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ -./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ -./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ -./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ -./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ -./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ -./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ -./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ -./Communication/PMR/Diagnostics/ValveState.pb-c.d \ -./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ -./Communication/PMR/Diagnostics/ValveType.pb-c.d - -OBJS += \ -./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ -./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ -./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ -./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ -./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ -./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ -./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ -./Communication/PMR/Diagnostics/Event.pb-c.obj \ -./Communication/PMR/Diagnostics/EventType.pb-c.obj \ -./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ -./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ -./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ -./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ -./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ -./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ -./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ -./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ -./Communication/PMR/Diagnostics/ValveType.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ -"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ -"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ -"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ -"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ -"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ -"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ -"Communication\PMR\Diagnostics\Event.pb-c.obj" \ -"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ -"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ -"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ -"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ -"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ -"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ -"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ -"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ -"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ -"Communication\PMR\Diagnostics\ValveType.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ -"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ -"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ -"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ -"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ -"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ -"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ -"Communication\PMR\Diagnostics\Event.pb-c.d" \ -"Communication\PMR\Diagnostics\EventType.pb-c.d" \ -"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ -"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ -"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ -"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ -"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ -"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ -"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ -"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ -"Communication\PMR\Diagnostics\ValveType.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ -"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ -"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ -"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ -"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ -"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ -"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ -"../Communication/PMR/Diagnostics/Event.pb-c.c" \ -"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ -"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ -"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ -"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ -"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ -"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ -"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ -"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ -"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ -"../Communication/PMR/Diagnostics/ValveType.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/003edbe39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/003edbe39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/003edbe39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/10fb49080d6d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/10fb49080d6d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/10fb49080d6d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/2025c1acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/2025c1acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index cfcf6fe0b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/2025c1acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c - -C_DEPS += \ -./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d - -OBJS += \ -./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/2084498eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/2084498eb56e001a173da96cce181ab0 deleted file mode 100644 index 8f295c82e..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/2084498eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/SSI_Comm/Dancer/Dancer.c - -C_DEPS += \ -./Drivers/SSI_Comm/Dancer/Dancer.d - -OBJS += \ -./Drivers/SSI_Comm/Dancer/Dancer.obj - -OBJS__QUOTED += \ -"Drivers\SSI_Comm\Dancer\Dancer.obj" - -C_DEPS__QUOTED += \ -"Drivers\SSI_Comm\Dancer\Dancer.d" - -C_SRCS__QUOTED += \ -"../Drivers/SSI_Comm/Dancer/Dancer.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/30e7bd509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/30e7bd509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/30e7bd509571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/407296e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/407296e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/407296e78f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/6055d4509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/6055d4509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/6055d4509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/6070d3e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/6070d3e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/6070d3e68f71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/8026a16e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/8026a16e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/8026a16e8771001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/9086f6398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/9086f6398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/9086f6398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/e0a86b6c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/e0a86b6c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/e0a86b6c8771001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/001cf48eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/001cf48eb56e001a173da96cce181ab0 deleted file mode 100644 index 606e96c56..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/001cf48eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../StateMachines/Printing/JobSTM.c \ -../StateMachines/Printing/PrintingSTM.c - -C_DEPS += \ -./StateMachines/Printing/JobSTM.d \ -./StateMachines/Printing/PrintingSTM.d - -OBJS += \ -./StateMachines/Printing/JobSTM.obj \ -./StateMachines/Printing/PrintingSTM.obj - -OBJS__QUOTED += \ -"StateMachines\Printing\JobSTM.obj" \ -"StateMachines\Printing\PrintingSTM.obj" - -C_DEPS__QUOTED += \ -"StateMachines\Printing\JobSTM.d" \ -"StateMachines\Printing\PrintingSTM.d" - -C_SRCS__QUOTED += \ -"../StateMachines/Printing/JobSTM.c" \ -"../StateMachines/Printing/PrintingSTM.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/90e67c509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/90e67c509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/90e67c509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/9167c3b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/9167c3b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/9167c3b48771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/a01bea998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/a01bea998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/a01bea998f71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/a1c2b4398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/a1c2b4398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/a1c2b4398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/c0c43d9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/c0c43d9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/c0c43d9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/d0decaab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/d0decaab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bd/d0decaab9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/100b5c18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/100b5c18b66e001a173da96cce181ab0 deleted file mode 100644 index 125bfabce..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/100b5c18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/20d327419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/20d327419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/20d327419b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/21ec248b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/21ec248b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/21ec248b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/70888f16b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/70888f16b66e001a173da96cce181ab0 deleted file mode 100644 index 148485096..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/70888f16b66e001a173da96cce181ab0 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/90b984e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/90b984e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/90b984e39a71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/d06313adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/d06313adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index aee99823b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/d06313adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/USB_Communication/USBCDCD.c - -C_DEPS += \ -./Drivers/USB_Communication/USBCDCD.d - -OBJS += \ -./Drivers/USB_Communication/USBCDCD.obj - -OBJS__QUOTED += \ -"Drivers\USB_Communication\USBCDCD.obj" - -C_DEPS__QUOTED += \ -"Drivers\USB_Communication\USBCDCD.d" - -C_SRCS__QUOTED += \ -"../Drivers/USB_Communication/USBCDCD.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/e0e104cd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/e0e104cd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/e0e104cd9071001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/f05208439b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/f05208439b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/f05208439b71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/f05aedab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/f05aedab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/be/f05aedab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/008fba398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/008fba398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/008fba398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/009aacca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/009aacca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/009aacca9071001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/30750418b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/30750418b66e001a173da96cce181ab0 deleted file mode 100644 index 708b11b8a..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/30750418b66e001a173da96cce181ab0 +++ /dev/null @@ -1,57 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/404b093a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/404b093a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/404b093a8871001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/702af5cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/702af5cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/702af5cc9071001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/8094d5cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/8094d5cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/8094d5cc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/80a86b509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/80a86b509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/80a86b509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/a020aeca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/a020aeca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/a020aeca9071001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/a03b9e419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/a03b9e419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/a03b9e419b71001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/c067a918b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/c067a918b66e001a173da96cce181ab0 deleted file mode 100644 index d1f2fc641..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/c067a918b66e001a173da96cce181ab0 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/Modbus/modbus-data.c \ -../Drivers/Uart_Comm/Modbus/modbus-rtu.c \ -../Drivers/Uart_Comm/Modbus/modbus-tcp.c \ -../Drivers/Uart_Comm/Modbus/modbus.c - -C_DEPS += \ -./Drivers/Uart_Comm/Modbus/modbus-data.d \ -./Drivers/Uart_Comm/Modbus/modbus-rtu.d \ -./Drivers/Uart_Comm/Modbus/modbus-tcp.d \ -./Drivers/Uart_Comm/Modbus/modbus.d - -OBJS += \ -./Drivers/Uart_Comm/Modbus/modbus-data.obj \ -./Drivers/Uart_Comm/Modbus/modbus-rtu.obj \ -./Drivers/Uart_Comm/Modbus/modbus-tcp.obj \ -./Drivers/Uart_Comm/Modbus/modbus.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\Modbus\modbus-data.obj" \ -"Drivers\Uart_Comm\Modbus\modbus-rtu.obj" \ -"Drivers\Uart_Comm\Modbus\modbus-tcp.obj" \ -"Drivers\Uart_Comm\Modbus\modbus.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\Modbus\modbus-data.d" \ -"Drivers\Uart_Comm\Modbus\modbus-rtu.d" \ -"Drivers\Uart_Comm\Modbus\modbus-tcp.d" \ -"Drivers\Uart_Comm\Modbus\modbus.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/Modbus/modbus-data.c" \ -"../Drivers/Uart_Comm/Modbus/modbus-rtu.c" \ -"../Drivers/Uart_Comm/Modbus/modbus-tcp.c" \ -"../Drivers/Uart_Comm/Modbus/modbus.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/f02a6f509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/f02a6f509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/f02a6f509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/f033ac509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/f033ac509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/f033ac509571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/00e8ee8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/00e8ee8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/00e8ee8a9571001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/40d888e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/40d888e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/40d888e39a71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/41db9c8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/41db9c8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/41db9c8b9571001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/816c0d8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/816c0d8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/816c0d8b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/d02681e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/d02681e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/d02681e58f71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/f0e5bd8db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/f0e5bd8db56e001a173da96cce181ab0 deleted file mode 100644 index 87c0ad368..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/f0e5bd8db56e001a173da96cce181ab0 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ -../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ -../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c - -C_DEPS += \ -./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ -./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ -./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d - -OBJS += \ -./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ -./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ -./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj - -OBJS__QUOTED += \ -"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ -"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ -"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" - -C_DEPS__QUOTED += \ -"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ -"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ -"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" - -C_SRCS__QUOTED += \ -"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ -"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ -"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/a108366e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/a108366e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/a108366e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/c06e6aabb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/c06e6aabb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index f340107b5..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/c06e6aabb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,170 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ -../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ -../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ -../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ -../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ -../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ -../Communication/PMR/Printing/JobBrushStop.pb-c.c \ -../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ -../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ -../Communication/PMR/Printing/JobDispenser.pb-c.c \ -../Communication/PMR/Printing/JobRequest.pb-c.c \ -../Communication/PMR/Printing/JobResponse.pb-c.c \ -../Communication/PMR/Printing/JobSegment.pb-c.c \ -../Communication/PMR/Printing/JobSpool.pb-c.c \ -../Communication/PMR/Printing/JobSpoolType.pb-c.c \ -../Communication/PMR/Printing/JobStatus.pb-c.c \ -../Communication/PMR/Printing/JobTicket.pb-c.c \ -../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ -../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ -../Communication/PMR/Printing/ProcessParameters.pb-c.c \ -../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ -../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ -../Communication/PMR/Printing/ThreadParameters.pb-c.c \ -../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ -../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ -./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ -./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ -./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ -./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ -./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ -./Communication/PMR/Printing/JobBrushStop.pb-c.d \ -./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ -./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ -./Communication/PMR/Printing/JobDispenser.pb-c.d \ -./Communication/PMR/Printing/JobRequest.pb-c.d \ -./Communication/PMR/Printing/JobResponse.pb-c.d \ -./Communication/PMR/Printing/JobSegment.pb-c.d \ -./Communication/PMR/Printing/JobSpool.pb-c.d \ -./Communication/PMR/Printing/JobSpoolType.pb-c.d \ -./Communication/PMR/Printing/JobStatus.pb-c.d \ -./Communication/PMR/Printing/JobTicket.pb-c.d \ -./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ -./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ -./Communication/PMR/Printing/ProcessParameters.pb-c.d \ -./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ -./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ -./Communication/PMR/Printing/ThreadParameters.pb-c.d \ -./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ -./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d - -OBJS += \ -./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ -./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ -./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ -./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ -./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ -./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ -./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ -./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ -./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ -./Communication/PMR/Printing/JobDispenser.pb-c.obj \ -./Communication/PMR/Printing/JobRequest.pb-c.obj \ -./Communication/PMR/Printing/JobResponse.pb-c.obj \ -./Communication/PMR/Printing/JobSegment.pb-c.obj \ -./Communication/PMR/Printing/JobSpool.pb-c.obj \ -./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ -./Communication/PMR/Printing/JobStatus.pb-c.obj \ -./Communication/PMR/Printing/JobTicket.pb-c.obj \ -./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ -./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ -./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ -./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ -./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ -./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ -./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ -./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ -"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ -"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ -"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ -"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ -"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ -"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ -"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ -"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ -"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ -"Communication\PMR\Printing\JobRequest.pb-c.obj" \ -"Communication\PMR\Printing\JobResponse.pb-c.obj" \ -"Communication\PMR\Printing\JobSegment.pb-c.obj" \ -"Communication\PMR\Printing\JobSpool.pb-c.obj" \ -"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ -"Communication\PMR\Printing\JobStatus.pb-c.obj" \ -"Communication\PMR\Printing\JobTicket.pb-c.obj" \ -"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ -"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ -"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ -"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ -"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ -"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ -"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ -"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ -"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ -"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ -"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ -"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ -"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ -"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ -"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ -"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ -"Communication\PMR\Printing\JobDispenser.pb-c.d" \ -"Communication\PMR\Printing\JobRequest.pb-c.d" \ -"Communication\PMR\Printing\JobResponse.pb-c.d" \ -"Communication\PMR\Printing\JobSegment.pb-c.d" \ -"Communication\PMR\Printing\JobSpool.pb-c.d" \ -"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ -"Communication\PMR\Printing\JobStatus.pb-c.d" \ -"Communication\PMR\Printing\JobTicket.pb-c.d" \ -"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ -"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ -"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ -"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ -"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ -"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ -"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ -"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ -"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ -"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ -"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ -"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ -"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ -"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ -"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ -"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ -"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ -"../Communication/PMR/Printing/JobRequest.pb-c.c" \ -"../Communication/PMR/Printing/JobResponse.pb-c.c" \ -"../Communication/PMR/Printing/JobSegment.pb-c.c" \ -"../Communication/PMR/Printing/JobSpool.pb-c.c" \ -"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ -"../Communication/PMR/Printing/JobStatus.pb-c.c" \ -"../Communication/PMR/Printing/JobTicket.pb-c.c" \ -"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ -"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ -"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ -"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ -"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ -"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ -"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ -"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/c1c1f99b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/c1c1f99b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/c1c1f99b8f71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/f04964aa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/f04964aa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/f04964aa9071001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/20e7feab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/20e7feab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/20e7feab9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/20e965b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/20e965b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/20e965b58771001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/302d9be78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/302d9be78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/302d9be78f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/40e69dac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/40e69dac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/40e69dac9071001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/412afe8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/412afe8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/412afe8a9571001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/5099a5e19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/5099a5e19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/5099a5e19a71001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/50d7bf998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/50d7bf998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/50d7bf998f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/8060768eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/8060768eb56e001a173da96cce181ab0 deleted file mode 100644 index b37735f09..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/8060768eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/a0b86ae58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/a0b86ae58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/a0b86ae58f71001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/c0d5d9b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/c0d5d9b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/c0d5d9b48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/f01019429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/f01019429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/f01019429b71001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/f0632aac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/f0632aac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c1/f0632aac9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/00c4e48cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/00c4e48cb56e001a173da96cce181ab0 deleted file mode 100644 index 3c7aad50c..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/00c4e48cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,162 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/10a53d419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/10a53d419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/10a53d419b71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/115de4b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/115de4b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/115de4b48771001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/308fa1acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/308fa1acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index e7680d0ef..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/308fa1acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/70481d3a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/70481d3a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/70481d3a8871001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/70b0e2398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/70b0e2398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/70b0e2398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/906257e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/906257e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/906257e68f71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/c032fc9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/c032fc9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/c032fc9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/c0fe266c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/c0fe266c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/c0fe266c8771001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/e070d59b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/e070d59b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/e070d59b8f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/e1055a8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/e1055a8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/e1055a8b9571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/006811adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/006811adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index ae44b8e39..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/006811adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/70af8d509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/70af8d509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/70af8d509571001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/802180cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/802180cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/802180cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/a020a1e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/a020a1e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/a020a1e78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/b085ca998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/b085ca998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/b085ca998f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/d0d23f429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/d0d23f429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/d0d23f429b71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/d0d8ea1ed66c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/d0d8ea1ed66c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/d0d8ea1ed66c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/e006eacc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/e006eacc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/e006eacc9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/005d81acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/005d81acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 47bbb9bfd..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/005d81acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/007492acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/007492acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index f8ecd45e0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/007492acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/00f2bbcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/00f2bbcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/00f2bbcc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/105d5f8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/105d5f8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/105d5f8b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/2013c5509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/2013c5509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/2013c5509571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/21e965b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/21e965b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/21e965b58771001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/308cce398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/308cce398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/308cce398871001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/40ccd89b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/40ccd89b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/40ccd89b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/90667de39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/90667de39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/90667de39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/a0c2a06c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/a0c2a06c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/a0c2a06c8771001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/b04fb7a1e46c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/b04fb7a1e46c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/b04fb7a1e46c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/e11982398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/e11982398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/e11982398871001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/f082c6e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/f082c6e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c4/f082c6e78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/00ccb7ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/00ccb7ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/00ccb7ab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/20574118b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/20574118b66e001a173da96cce181ab0 deleted file mode 100644 index 2c8a0951f..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/20574118b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/206f596e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/206f596e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/206f596e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/305544e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/305544e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/305544e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/40e21321f56c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/40e21321f56c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/40e21321f56c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/40f3bfe78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/40f3bfe78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/40f3bfe78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/600fa3398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/600fa3398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/600fa3398871001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/700c7ce78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/700c7ce78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/700c7ce78f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/70eadae68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/70eadae68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/70eadae68f71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/80e0aeadb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/80e0aeadb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 73ae9b00b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/80e0aeadb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,847 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS - -GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" -GEN_CMDS__FLAG := -l"configPkg/linker.cmd" - -ORDERED_OBJS += \ -"./Main.obj" \ -"./delay.obj" \ -"./Common/SWUpdate/FileSystem.obj" \ -"./Common/SWUpdate/FirmwareUpgrade.obj" \ -"./Common/SW_Info/SW_Info.obj" \ -"./Common/Software_CRC/sw_crc.obj" \ -"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ -"./Common/Sys_PinOut_Config/Pin.obj" \ -"./Common/Sys_PinOut_Config/Pin_config.obj" \ -"./Common/Utilities/RFIDTagHandling.obj" \ -"./Common/Utilities/Update.obj" \ -"./Common/Utilities/Utils.obj" \ -"./Common/Utilities/idle_task.obj" \ -"./Common/Utilities/ustdlib.obj" \ -"./Common/protobuf-c/protobuf-c.obj" \ -"./Common/report/distributor.obj" \ -"./Common/report/filter.obj" \ -"./Common/report/reportInit.obj" \ -"./Communication/CommunicationTask.obj" \ -"./Communication/Connection.obj" \ -"./Communication/Container.obj" \ -"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ -"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ -"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ -"./Communication/PMR/Common/MessageType.pb-c.obj" \ -"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ -"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ -"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ -"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ -"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ -"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ -"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ -"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ -"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ -"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ -"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ -"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ -"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ -"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ -"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ -"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ -"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ -"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ -"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ -"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ -"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ -"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ -"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ -"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ -"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ -"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ -"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ -"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ -"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ -"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ -"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ -"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ -"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ -"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ -"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ -"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ -"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ -"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ -"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ -"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ -"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ -"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ -"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ -"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ -"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ -"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ -"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ -"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ -"./Communication/PMR/IO/FileInfo.pb-c.obj" \ -"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ -"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ -"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ -"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ -"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ -"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ -"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ -"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ -"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ -"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ -"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ -"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ -"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ -"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ -"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ -"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ -"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ -"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ -"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ -"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ -"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ -"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ -"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ -"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ -"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ -"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ -"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ -"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ -"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ -"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ -"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ -"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ -"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ -"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ -"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ -"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ -"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ -"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ -"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ -"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ -"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ -"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ -"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ -"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ -"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ -"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ -"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ -"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ -"./Drivers/ADC_Sampling/ADC.obj" \ -"./Drivers/ADC_Sampling/ADC_VAC.obj" \ -"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ -"./Drivers/FPGA/FPGA.obj" \ -"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ -"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ -"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ -"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ -"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ -"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ -"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ -"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ -"./Drivers/FPGA/Motors_Driver/L6470.obj" \ -"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ -"./Drivers/Flash_Memory/FATFS/cc932.obj" \ -"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ -"./Drivers/Flash_Memory/FATFS/ff.obj" \ -"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ -"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ -"./Drivers/Flash_Memory/Flash_Memory.obj" \ -"./Drivers/Heater/ADS1220.obj" \ -"./Drivers/Heater/Heater.obj" \ -"./Drivers/Heater/TemperatureSensor.obj" \ -"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ -"./Drivers/I2C_Communication/DAC/Blower.obj" \ -"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ -"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ -"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ -"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ -"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ -"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ -"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ -"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ -"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ -"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ -"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ -"./Drivers/I2C_Communication/I2C.obj" \ -"./Drivers/I2C_Communication/I2C_Comm.obj" \ -"./Drivers/I2C_Communication/I2C_FIFO.obj" \ -"./Drivers/I2C_Communication/I2C_Task.obj" \ -"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ -"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ -"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ -"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ -"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ -"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ -"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ -"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ -"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ -"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ -"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ -"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ -"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ -"./Drivers/Motors/Motor.obj" \ -"./Drivers/Motors/MotorActions.obj" \ -"./Drivers/On_Chip_Flash/Flashstore.obj" \ -"./Drivers/SPI/SPI_Comm.obj" \ -"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ -"./Drivers/SSI_Comm/SSI_Comm.obj" \ -"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ -"./Drivers/USB_Communication/USBCDCD.obj" \ -"./Drivers/Uart_Comm/Uart.obj" \ -"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ -"./Drivers/Valves/Valve.obj" \ -"./Drivers/flash_ram/FlashProgram.obj" \ -"./Drivers/flash_ram/MCU_E2Prom.obj" \ -"./Modules/AlarmHandling/AlarmHandling.obj" \ -"./Modules/Control/DriverWithCallbackExample.obj" \ -"./Modules/Control/MillisecTask.obj" \ -"./Modules/Control/PIDAlgo.obj" \ -"./Modules/Control/control.obj" \ -"./Modules/Diagnostics/DiagnosticActions.obj" \ -"./Modules/Diagnostics/Diagnostics.obj" \ -"./Modules/Diagnostics/DiagnosticsHoming.obj" \ -"./Modules/Diagnostics/DiagnosticsJogging.obj" \ -"./Modules/General/GeneralHardware.obj" \ -"./Modules/General/MachineStatus.obj" \ -"./Modules/General/Safety.obj" \ -"./Modules/General/buttons.obj" \ -"./Modules/General/process.obj" \ -"./Modules/Heaters/Heaters_bit.obj" \ -"./Modules/Heaters/Heaters_init.obj" \ -"./Modules/Heaters/Heaters_maint.obj" \ -"./Modules/Heaters/Heaters_print.obj" \ -"./Modules/IDS/IDS_BIT.obj" \ -"./Modules/IDS/IDS_Cleaning.obj" \ -"./Modules/IDS/IDS_dispenser.obj" \ -"./Modules/IDS/IDS_init.obj" \ -"./Modules/IDS/IDS_maint.obj" \ -"./Modules/IDS/IDS_print.obj" \ -"./Modules/IFS/ifs.obj" \ -"./Modules/Stubs_Handler/Calculate.obj" \ -"./Modules/Stubs_Handler/Progress.obj" \ -"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ -"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ -"./Modules/Stubs_Handler/Stub_Dancer.obj" \ -"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ -"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ -"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ -"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ -"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ -"./Modules/Stubs_Handler/Stub_GPIO.obj" \ -"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ -"./Modules/Stubs_Handler/Stub_Heater.obj" \ -"./Modules/Stubs_Handler/Stub_I2C.obj" \ -"./Modules/Stubs_Handler/Stub_IntADC.obj" \ -"./Modules/Stubs_Handler/Stub_L6470.obj" \ -"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ -"./Modules/Stubs_Handler/Stub_Motor.obj" \ -"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ -"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ -"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ -"./Modules/Stubs_Handler/Stub_Status.obj" \ -"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ -"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ -"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ -"./Modules/Stubs_Handler/Stub_Valve.obj" \ -"./Modules/Stubs_Handler/User_Leds.obj" \ -"./Modules/Stubs_Handler/temperature_sensor.obj" \ -"./Modules/Thread/ThreadLoad.obj" \ -"./Modules/Thread/Thread_BIT.obj" \ -"./Modules/Thread/Thread_Winder.obj" \ -"./Modules/Thread/Thread_init.obj" \ -"./Modules/Thread/Thread_maint.obj" \ -"./Modules/Thread/Thread_print.obj" \ -"./Modules/Waste/Waste_BIT.obj" \ -"./Modules/Waste/Waste_init.obj" \ -"./Modules/Waste/Waste_maint.obj" \ -"./Modules/Waste/Waste_print.obj" \ -"./Modules/Waste/newWHS_init.obj" \ -"./StateMachines/Initialization/InitSequence.obj" \ -"./StateMachines/Initialization/PowerIdle.obj" \ -"./StateMachines/Initialization/PowerOffSequence.obj" \ -"./StateMachines/Printing/JobSTM.obj" \ -"./StateMachines/Printing/PrintingSTM.obj" \ -"../tm4c129xnczad.cmd" \ -$(GEN_CMDS__FLAG) \ --l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ --l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ --l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ --llibc.a \ - --include ../makefile.init - -RM := DEL /F -RMDIR := RMDIR /S/Q - -# All of the sources participating in the build are defined here --include sources.mk --include subdir_vars.mk --include Common/SWUpdate/subdir_vars.mk --include Common/SW_Info/subdir_vars.mk --include Common/Software_CRC/subdir_vars.mk --include Common/Sys_PinOut_Config/subdir_vars.mk --include Common/Utilities/subdir_vars.mk --include Common/protobuf-c/subdir_vars.mk --include Common/report/subdir_vars.mk --include Communication/subdir_vars.mk --include Communication/PMR/Common/subdir_vars.mk --include Communication/PMR/Connection/subdir_vars.mk --include Communication/PMR/Debugging/subdir_vars.mk --include Communication/PMR/Diagnostics/subdir_vars.mk --include Communication/PMR/EmbeddedParameters/subdir_vars.mk --include Communication/PMR/FirmwareUpgrade/subdir_vars.mk --include Communication/PMR/Hardware/subdir_vars.mk --include Communication/PMR/IO/subdir_vars.mk --include Communication/PMR/MachineStatus/subdir_vars.mk --include Communication/PMR/Power/subdir_vars.mk --include Communication/PMR/Printing/subdir_vars.mk --include Communication/PMR/Stubs/subdir_vars.mk --include Communication/PMR/ThreadLoading/subdir_vars.mk --include Drivers/ADC_Sampling/subdir_vars.mk --include Drivers/FPGA/subdir_vars.mk --include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk --include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk --include Drivers/FPGA/Full_Vme/subdir_vars.mk --include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk --include Drivers/FPGA/Motors_Driver/subdir_vars.mk --include Drivers/Flash_Memory/FATFS/subdir_vars.mk --include Drivers/Flash_Memory/subdir_vars.mk --include Drivers/Heater/subdir_vars.mk --include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk --include Drivers/I2C_Communication/DAC/subdir_vars.mk --include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk --include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk --include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk --include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk --include Drivers/I2C_Communication/subdir_vars.mk --include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk --include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk --include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk --include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk --include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk --include Drivers/Motors/subdir_vars.mk --include Drivers/On_Chip_Flash/subdir_vars.mk --include Drivers/SPI/subdir_vars.mk --include Drivers/SSI_Comm/Dancer/subdir_vars.mk --include Drivers/SSI_Comm/subdir_vars.mk --include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk --include Drivers/USB_Communication/subdir_vars.mk --include Drivers/Uart_Comm/subdir_vars.mk --include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk --include Drivers/Valves/subdir_vars.mk --include Drivers/flash_ram/subdir_vars.mk --include Modules/AlarmHandling/subdir_vars.mk --include Modules/Control/subdir_vars.mk --include Modules/Diagnostics/subdir_vars.mk --include Modules/General/subdir_vars.mk --include Modules/Heaters/subdir_vars.mk --include Modules/IDS/subdir_vars.mk --include Modules/IFS/subdir_vars.mk --include Modules/Stubs_Handler/subdir_vars.mk --include Modules/Thread/subdir_vars.mk --include Modules/Waste/subdir_vars.mk --include StateMachines/Initialization/subdir_vars.mk --include StateMachines/Printing/subdir_vars.mk --include subdir_rules.mk --include Common/SWUpdate/subdir_rules.mk --include Common/SW_Info/subdir_rules.mk --include Common/Software_CRC/subdir_rules.mk --include Common/Sys_PinOut_Config/subdir_rules.mk --include Common/Utilities/subdir_rules.mk --include Common/protobuf-c/subdir_rules.mk --include Common/report/subdir_rules.mk --include Communication/subdir_rules.mk --include Communication/PMR/Common/subdir_rules.mk --include Communication/PMR/Connection/subdir_rules.mk --include Communication/PMR/Debugging/subdir_rules.mk --include Communication/PMR/Diagnostics/subdir_rules.mk --include Communication/PMR/EmbeddedParameters/subdir_rules.mk --include Communication/PMR/FirmwareUpgrade/subdir_rules.mk --include Communication/PMR/Hardware/subdir_rules.mk --include Communication/PMR/IO/subdir_rules.mk --include Communication/PMR/MachineStatus/subdir_rules.mk --include Communication/PMR/Power/subdir_rules.mk --include Communication/PMR/Printing/subdir_rules.mk --include Communication/PMR/Stubs/subdir_rules.mk --include Communication/PMR/ThreadLoading/subdir_rules.mk --include Drivers/ADC_Sampling/subdir_rules.mk --include Drivers/FPGA/subdir_rules.mk --include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk --include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk --include Drivers/FPGA/Full_Vme/subdir_rules.mk --include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk --include Drivers/FPGA/Motors_Driver/subdir_rules.mk --include Drivers/Flash_Memory/FATFS/subdir_rules.mk --include Drivers/Flash_Memory/subdir_rules.mk --include Drivers/Heater/subdir_rules.mk --include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk --include Drivers/I2C_Communication/DAC/subdir_rules.mk --include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk --include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk --include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk --include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk --include Drivers/I2C_Communication/subdir_rules.mk --include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk --include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk --include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk --include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk --include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk --include Drivers/Motors/subdir_rules.mk --include Drivers/On_Chip_Flash/subdir_rules.mk --include Drivers/SPI/subdir_rules.mk --include Drivers/SSI_Comm/Dancer/subdir_rules.mk --include Drivers/SSI_Comm/subdir_rules.mk --include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk --include Drivers/USB_Communication/subdir_rules.mk --include Drivers/Uart_Comm/subdir_rules.mk --include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk --include Drivers/Valves/subdir_rules.mk --include Drivers/flash_ram/subdir_rules.mk --include Modules/AlarmHandling/subdir_rules.mk --include Modules/Control/subdir_rules.mk --include Modules/Diagnostics/subdir_rules.mk --include Modules/General/subdir_rules.mk --include Modules/Heaters/subdir_rules.mk --include Modules/IDS/subdir_rules.mk --include Modules/IFS/subdir_rules.mk --include Modules/Stubs_Handler/subdir_rules.mk --include Modules/Thread/subdir_rules.mk --include Modules/Waste/subdir_rules.mk --include StateMachines/Initialization/subdir_rules.mk --include StateMachines/Printing/subdir_rules.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C55_DEPS)),) --include $(C55_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -ifneq ($(strip $(S67_DEPS)),) --include $(S67_DEPS) -endif -ifneq ($(strip $(S62_DEPS)),) --include $(S62_DEPS) -endif -ifneq ($(strip $(S_DEPS)),) --include $(S_DEPS) -endif -ifneq ($(strip $(OPT_DEPS)),) --include $(OPT_DEPS) -endif -ifneq ($(strip $(C??_DEPS)),) --include $(C??_DEPS) -endif -ifneq ($(strip $(ASM_UPPER_DEPS)),) --include $(ASM_UPPER_DEPS) -endif -ifneq ($(strip $(S??_DEPS)),) --include $(S??_DEPS) -endif -ifneq ($(strip $(C64_DEPS)),) --include $(C64_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(S64_DEPS)),) --include $(S64_DEPS) -endif -ifneq ($(strip $(INO_DEPS)),) --include $(INO_DEPS) -endif -ifneq ($(strip $(CLA_DEPS)),) --include $(CLA_DEPS) -endif -ifneq ($(strip $(S55_DEPS)),) --include $(S55_DEPS) -endif -ifneq ($(strip $(SV7A_DEPS)),) --include $(SV7A_DEPS) -endif -ifneq ($(strip $(C62_DEPS)),) --include $(C62_DEPS) -endif -ifneq ($(strip $(C67_DEPS)),) --include $(C67_DEPS) -endif -ifneq ($(strip $(PDE_DEPS)),) --include $(PDE_DEPS) -endif -ifneq ($(strip $(K_DEPS)),) --include $(K_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(C43_DEPS)),) --include $(C43_DEPS) -endif -ifneq ($(strip $(S43_DEPS)),) --include $(S43_DEPS) -endif -ifneq ($(strip $(ASM_DEPS)),) --include $(ASM_DEPS) -endif -ifneq ($(strip $(S_UPPER_DEPS)),) --include $(S_UPPER_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(SA_DEPS)),) --include $(SA_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables -EXE_OUTPUTS += \ -Embedded.out \ - -EXE_OUTPUTS__QUOTED += \ -"Embedded.out" \ - -BIN_OUTPUTS += \ -Embedded.bin \ - -BIN_OUTPUTS__QUOTED += \ -"Embedded.bin" \ - - -# All Target -all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) - @$(MAKE) --no-print-directory -Onone "Embedded.out" - -# Tool invocations -Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) - @echo 'Building target: $@' - @echo 'Invoking: ARM Linker' - @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' - $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") - $(shell type "ccsObjs.opt" >> "ccsLinker.opt") - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" - @echo 'Finished building target: $@' - @echo ' ' - @$(MAKE) --no-print-directory post-build - -Embedded.bin: $(EXE_OUTPUTS) - @echo 'Invoking: ARM Hex Utility' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) - @echo 'Finished building: $@' - @echo ' ' - @$(MAKE) --no-print-directory post-build - -# Other Targets -clean: - -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) - -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) - -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" - -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" - -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" - -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" - -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" - -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" - -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" - -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" - -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" - -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" - -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" - -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" - -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" - -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" - -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" - -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" - -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" - -$(RM) "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" - -$(RM) "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" - -$(RM) "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" - -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" - -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" - -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" - -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" - -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" - -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" - -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" - -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" - -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" - -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" - -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" - -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" - -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" - -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" - -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" - -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" - -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" - -$(RM) "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" - -$(RM) "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" - -$(RM) "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" - -@echo 'Finished clean' - -@echo ' ' - -post-build: - -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" - -@echo ' ' - -.PHONY: all clean dependents -.SECONDARY: - --include ../makefile.targets - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/d04589398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/d04589398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/d04589398871001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/d075d1cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/d075d1cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/d075d1cc9071001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/e0172f398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/e0172f398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/e0172f398871001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/e084ba01db6c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/e084ba01db6c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/e084ba01db6c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/00ad88cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/00ad88cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/00ad88cc9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/1049b3e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/1049b3e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/1049b3e78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/10f44a18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/10f44a18b66e001a173da96cce181ab0 deleted file mode 100644 index 4448a628e..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/10f44a18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/31bd916e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/31bd916e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/31bd916e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/50ab57509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/50ab57509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/50ab57509571001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/606a92509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/606a92509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/606a92509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/60c5f68cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/60c5f68cb56e001a173da96cce181ab0 deleted file mode 100644 index 4c77c8969..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/60c5f68cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,43 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/9084499b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/9084499b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/9084499b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/a0ab78e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/a0ab78e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/a0ab78e39a71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/b0a32b419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/b0a32b419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/b0a32b419b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/c029eccc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/c029eccc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/c029eccc9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/d1f058b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/d1f058b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/d1f058b58771001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0182ee49a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0182ee49a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0182ee49a71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0a169429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0a169429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0a169429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f153928b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f153928b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f153928b9571001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/0064e9509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/0064e9509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/0064e9509571001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/0109fa398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/0109fa398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/0109fa398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/101725adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/101725adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index a4a43d940..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/101725adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/306ed3398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/306ed3398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/306ed3398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/30968bacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/30968bacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index f9003f42f..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/30968bacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c - -C_DEPS += \ -./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d - -OBJS += \ -./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/309c9b9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/309c9b9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/309c9b9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/404c9f8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/404c9f8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/404c9f8b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/80ef416e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/80ef416e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/80ef416e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/900b1be88f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/900b1be88f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/900b1be88f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/9051bdcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/9051bdcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/9051bdcc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/90c33a6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/90c33a6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/90c33a6e8771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/a050df8db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/a050df8db56e001a173da96cce181ab0 deleted file mode 100644 index 2d8d13e32..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/a050df8db56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c - -C_DEPS += \ -./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d - -OBJS += \ -./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/c021da509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/c021da509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/c021da509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/d021383a066d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/d021383a066d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/d021383a066d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/d0bf0f18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/d0bf0f18b66e001a173da96cce181ab0 deleted file mode 100644 index 8cce4b3ae..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/d0bf0f18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c - -C_DEPS += \ -./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d - -OBJS += \ -./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj - -OBJS__QUOTED += \ -"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" - -C_DEPS__QUOTED += \ -"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" - -C_SRCS__QUOTED += \ -"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/506c26ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/506c26ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/506c26ac9071001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/909c4a8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/909c4a8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/909c4a8b9571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/90fa49519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/90fa49519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/90fa49519571001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/a01da4509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/a01da4509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/a01da4509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/b07632cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/b07632cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/b07632cc9071001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/102028e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/102028e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/102028e78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/2039a59b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/2039a59b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/2039a59b8f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/3037c9e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/3037c9e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/3037c9e68f71001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/309f0ee39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/309f0ee39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/309f0ee39a71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/70e3a7429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/70e3a7429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/70e3a7429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/802c92e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/802c92e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/802c92e78f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/806930429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/806930429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/806930429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/a02c694f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/a02c694f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/a02c694f9571001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/a038f3a99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/a038f3a99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/a038f3a99071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/c0aa8918b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/c0aa8918b66e001a173da96cce181ab0 deleted file mode 100644 index 1c8fe48c2..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/c0aa8918b66e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ -../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ -./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ -./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ -"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ -"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ -"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/c0c93a429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/c0c93a429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/c0c93a429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/c0da0ce88f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/c0da0ce88f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/c0da0ce88f71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/e023c6ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/e023c6ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/e023c6ab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/20b780509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/20b780509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/20b780509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/30bd09e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/30bd09e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/30bd09e39a71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/70f8e88eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/70f8e88eb56e001a173da96cce181ab0 deleted file mode 100644 index 0b34bf49e..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/70f8e88eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,43 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/80ccf7a99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/80ccf7a99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/80ccf7a99071001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/b01c149b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/b01c149b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/b01c149b8f71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/d0a412bbf56c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/d0a412bbf56c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/d0a412bbf56c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/d145756c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/d145756c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/d145756c8771001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/f084e28db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/f084e28db56e001a173da96cce181ab0 deleted file mode 100644 index 248408ccc..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ca/f084e28db56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c - -C_DEPS += \ -./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d - -OBJS += \ -./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/103b5dcd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/103b5dcd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/103b5dcd9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/108012e88f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/108012e88f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/108012e88f71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/21fd3c8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/21fd3c8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/21fd3c8a9571001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30a1e1e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30a1e1e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30a1e1e68f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/4025d8ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/4025d8ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/4025d8ab9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/4036376d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/4036376d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/4036376d8771001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/5060ad8cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/5060ad8cb56e001a173da96cce181ab0 deleted file mode 100644 index 7024e2b68..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/5060ad8cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,57 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/50896118b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/50896118b66e001a173da96cce181ab0 deleted file mode 100644 index fb81967b2..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/50896118b66e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/RFID_NFC/NFC.c \ -../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c - -C_DEPS += \ -./Drivers/I2C_Communication/RFID_NFC/NFC.d \ -./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d - -OBJS += \ -./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ -./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ -"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ -"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ -"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/509e7daa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/509e7daa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/509e7daa9071001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/7149b38b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/7149b38b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/7149b38b9571001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/71c0af9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/71c0af9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/71c0af9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/806f7fca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/806f7fca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/806f7fca9071001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/90c494e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/90c494e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/90c494e78f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/c071e5e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/c071e5e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/c071e5e68f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/c0eb24e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/c0eb24e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/c0eb24e78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/d02ff88db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/d02ff88db56e001a173da96cce181ab0 deleted file mode 100644 index 9ec5d0604..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/d02ff88db56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/d0e74e6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/d0e74e6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/d0e74e6e8771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f07b22419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f07b22419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f07b22419b71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/1018168eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/1018168eb56e001a173da96cce181ab0 deleted file mode 100644 index a3c45670a..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/1018168eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ -../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ -./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ -./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ -"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ -"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ -"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/10f2bc429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/10f2bc429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/10f2bc429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/20b1c0e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/20b1c0e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/20b1c0e39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/20bf94e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/20bf94e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/20bf94e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/408c3c9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/408c3c9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/408c3c9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/70188e50126d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/70188e50126d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/70188e50126d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/a0c9449b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/a0c9449b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/a0c9449b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/b02805ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/b02805ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/b02805ac9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/f04873ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/f04873ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/f04873ab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/406f1b8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/406f1b8eb56e001a173da96cce181ab0 deleted file mode 100644 index ce5d85f2d..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/406f1b8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/5048c2998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/5048c2998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/5048c2998f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/708293cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/708293cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/708293cc9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/80619ee78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/80619ee78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/80619ee78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/80d8628eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/80d8628eb56e001a173da96cce181ab0 deleted file mode 100644 index e69de29bb..000000000 diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/90a87be58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/90a87be58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/90a87be58f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/b09f3118b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/b09f3118b66e001a173da96cce181ab0 deleted file mode 100644 index f9003f42f..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/b09f3118b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c - -C_DEPS += \ -./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d - -OBJS += \ -./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/d1d486398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/d1d486398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/d1d486398871001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/e12edc4e9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/e12edc4e9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/e12edc4e9571001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/20fd3c8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/20fd3c8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/20fd3c8a9571001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/519ff3b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/519ff3b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/519ff3b48771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/90220b8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/90220b8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/90220b8b9571001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/b026b2ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/b026b2ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/b026b2ab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/b038026c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/b038026c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/b038026c8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/b04f45aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/b04f45aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 50c4bbea0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/b04f45aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,86 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ -../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ -../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ -../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ -../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ -../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ -../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ -../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ -../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ -../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ -../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ -./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ -./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ -./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ -./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ -./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ -./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ -./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ -./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ -./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ -./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d - -OBJS += \ -./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ -./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ -./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ -./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ -./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ -./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ -./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ -./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ -./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ -./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ -./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ -"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ -"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ -"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ -"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ -"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ -"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ -"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ -"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ -"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ -"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ -"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ -"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ -"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ -"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ -"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ -"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ -"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ -"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ -"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ -"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ -"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ -"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ -"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ -"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ -"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ -"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ -"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ -"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ -"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ -"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/b0c46b4f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/b0c46b4f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/b0c46b4f9571001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/f09704e49a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/f09704e49a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/f09704e49a71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/003f86acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/003f86acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 54dde83fa..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/003f86acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/10a415e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/10a415e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/10a415e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/21b780509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/21b780509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/21b780509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/9049b4ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/9049b4ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/9049b4ab9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/b0bee3509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/b0bee3509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/b0bee3509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/f044ce9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/f044ce9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/f044ce9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/106217e88f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/106217e88f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/106217e88f71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/5062168a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/5062168a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/5062168a9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/71e1a56e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/71e1a56e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/71e1a56e8771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/808eae8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/808eae8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/808eae8b9571001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/b03787ca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/b03787ca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/b03787ca9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/b123b56e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/b123b56e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/b123b56e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/d0117b509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/d0117b509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/d0117b509571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/d0d379e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/d0d379e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/d0d379e58f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/1067aee78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/1067aee78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/1067aee78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/300cc0b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/300cc0b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/300cc0b48771001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/90702be68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/90702be68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/90702be68f71001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/90df58cb9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/90df58cb9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/90df58cb9071001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/d19414b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/d19414b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/d19414b58771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/e00d4818b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/e00d4818b66e001a173da96cce181ab0 deleted file mode 100644 index 4b547970d..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/e00d4818b66e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ -../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ -./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ -./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ -"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ -"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ -"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/e1bed4998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/e1bed4998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/e1bed4998f71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/f0d8c8429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/f0d8c8429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/f0d8c8429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/00c2199b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/00c2199b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/00c2199b8f71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/308ef6e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/308ef6e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/308ef6e39a71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/30a18c398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/30a18c398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/30a18c398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/40733f519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/40733f519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/40733f519571001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/4099978db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/4099978db56e001a173da96cce181ab0 deleted file mode 100644 index 708b11b8a..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/4099978db56e001a173da96cce181ab0 +++ /dev/null @@ -1,57 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/80a47018b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/80a47018b66e001a173da96cce181ab0 deleted file mode 100644 index 41d1db205..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/80a47018b66e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ -../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ -./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ -./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ -"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ -"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ -"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/80e19f8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/80e19f8eb56e001a173da96cce181ab0 deleted file mode 100644 index 94a2fa3e9..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/80e19f8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/b0ee1ecc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/b0ee1ecc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/b0ee1ecc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/c0e5658eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/c0e5658eb56e001a173da96cce181ab0 deleted file mode 100644 index c49132708..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/c0e5658eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/f049ab6c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/f049ab6c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/f049ab6c8771001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/30128f398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/30128f398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/30128f398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/407aabacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/407aabacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index fa007a15a..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/407aabacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/40a46bcb9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/40a46bcb9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/40a46bcb9071001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/6037d9509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/6037d9509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/6037d9509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/9050178eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/9050178eb56e001a173da96cce181ab0 deleted file mode 100644 index e336f53b6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/9050178eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a052488b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a052488b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a052488b9571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a0da063af06c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a0da063af06c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a0da063af06c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a163608a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a163608a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a163608a9571001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/b0dd1f6d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/b0dd1f6d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/b0dd1f6d8771001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/f01dc3cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/f01dc3cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/f01dc3cc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/2063219b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/2063219b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/2063219b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/20a9b5ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/20a9b5ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/20a9b5ab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/30ab5f8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/30ab5f8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/30ab5f8b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/712bff6b8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/712bff6b8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/712bff6b8771001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/902c4c18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/902c4c18b66e001a173da96cce181ab0 deleted file mode 100644 index 94a17d396..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/902c4c18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/a0ee8f429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/a0ee8f429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/a0ee8f429b71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/f035978b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/f035978b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/f035978b9571001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/10b95b6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/10b95b6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/10b95b6e8771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/206a71429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/206a71429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/206a71429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/50c3594f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/50c3594f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/50c3594f9571001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/600174aa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/600174aa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/600174aa9071001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/808683e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/808683e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/808683e78f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/80f14dac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/80f14dac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/80f14dac9071001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90da0c8cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90da0c8cb56e001a173da96cce181ab0 deleted file mode 100644 index 406e76651..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90da0c8cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/report/distributor.c \ -../Common/report/filter.c \ -../Common/report/reportInit.c - -C_DEPS += \ -./Common/report/distributor.d \ -./Common/report/filter.d \ -./Common/report/reportInit.d - -OBJS += \ -./Common/report/distributor.obj \ -./Common/report/filter.obj \ -./Common/report/reportInit.obj - -OBJS__QUOTED += \ -"Common\report\distributor.obj" \ -"Common\report\filter.obj" \ -"Common\report\reportInit.obj" - -C_DEPS__QUOTED += \ -"Common\report\distributor.d" \ -"Common\report\filter.d" \ -"Common\report\reportInit.d" - -C_SRCS__QUOTED += \ -"../Common/report/distributor.c" \ -"../Common/report/filter.c" \ -"../Common/report/reportInit.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/c068b06e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/c068b06e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/c068b06e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/003b3655d66c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/003b3655d66c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/003b3655d66c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/406ce44e9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/406ce44e9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/406ce44e9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/407d26e88f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/407d26e88f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/407d26e88f71001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/818d183a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/818d183a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/818d183a8871001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/b0633b18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/b0633b18b66e001a173da96cce181ab0 deleted file mode 100644 index 2d8d13e32..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/b0633b18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c - -C_DEPS += \ -./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d - -OBJS += \ -./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/c147143a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/c147143a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/c147143a8871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/f02f3dcd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/f02f3dcd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/f02f3dcd9071001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/20e477cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/20e477cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/20e477cc9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/413cfdb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/413cfdb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/413cfdb48771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/60115578db6c001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/60115578db6c001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 14b4cd918..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/60115578db6c001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d - -OBJS += \ -./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/807e0cb58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/807e0cb58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/807e0cb58771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/80eec6cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/80eec6cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/80eec6cc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/a0fa1aac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/a0fa1aac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/a0fa1aac9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/e0a9158b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/e0a9158b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/e0a9158b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/e0ac6c18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/e0ac6c18b66e001a173da96cce181ab0 deleted file mode 100644 index a3c45670a..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/e0ac6c18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ -../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ -./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ -./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ -"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ -"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ -"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/f04914e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/f04914e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/f04914e78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/f0508f50126d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/f0508f50126d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/f0508f50126d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/007b7cacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/007b7cacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index f8910cec4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/007b7cacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,56 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Flash_Memory/FATFS/Control_File_System.c \ -../Drivers/Flash_Memory/FATFS/cc932.c \ -../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ -../Drivers/Flash_Memory/FATFS/ff.c \ -../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ -../Drivers/Flash_Memory/FATFS/spi_flash.c - -C_DEPS += \ -./Drivers/Flash_Memory/FATFS/Control_File_System.d \ -./Drivers/Flash_Memory/FATFS/cc932.d \ -./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ -./Drivers/Flash_Memory/FATFS/ff.d \ -./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ -./Drivers/Flash_Memory/FATFS/spi_flash.d - -OBJS += \ -./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ -./Drivers/Flash_Memory/FATFS/cc932.obj \ -./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ -./Drivers/Flash_Memory/FATFS/ff.obj \ -./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ -./Drivers/Flash_Memory/FATFS/spi_flash.obj - -OBJS__QUOTED += \ -"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ -"Drivers\Flash_Memory\FATFS\cc932.obj" \ -"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ -"Drivers\Flash_Memory\FATFS\ff.obj" \ -"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ -"Drivers\Flash_Memory\FATFS\spi_flash.obj" - -C_DEPS__QUOTED += \ -"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ -"Drivers\Flash_Memory\FATFS\cc932.d" \ -"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ -"Drivers\Flash_Memory\FATFS\ff.d" \ -"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ -"Drivers\Flash_Memory\FATFS\spi_flash.d" - -C_SRCS__QUOTED += \ -"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ -"../Drivers/Flash_Memory/FATFS/cc932.c" \ -"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ -"../Drivers/Flash_Memory/FATFS/ff.c" \ -"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ -"../Drivers/Flash_Memory/FATFS/spi_flash.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/10f96dcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/10f96dcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/10f96dcc9071001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/20ae43509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/20ae43509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/20ae43509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/30b6e64e9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/30b6e64e9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/30b6e64e9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/402b4aadb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/402b4aadb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 790d8e600..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/402b4aadb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/General/GeneralHardware.c \ -../Modules/General/MachineStatus.c \ -../Modules/General/Safety.c \ -../Modules/General/buttons.c \ -../Modules/General/process.c - -C_DEPS += \ -./Modules/General/GeneralHardware.d \ -./Modules/General/MachineStatus.d \ -./Modules/General/Safety.d \ -./Modules/General/buttons.d \ -./Modules/General/process.d - -OBJS += \ -./Modules/General/GeneralHardware.obj \ -./Modules/General/MachineStatus.obj \ -./Modules/General/Safety.obj \ -./Modules/General/buttons.obj \ -./Modules/General/process.obj - -OBJS__QUOTED += \ -"Modules\General\GeneralHardware.obj" \ -"Modules\General\MachineStatus.obj" \ -"Modules\General\Safety.obj" \ -"Modules\General\buttons.obj" \ -"Modules\General\process.obj" - -C_DEPS__QUOTED += \ -"Modules\General\GeneralHardware.d" \ -"Modules\General\MachineStatus.d" \ -"Modules\General\Safety.d" \ -"Modules\General\buttons.d" \ -"Modules\General\process.d" - -C_SRCS__QUOTED += \ -"../Modules/General/GeneralHardware.c" \ -"../Modules/General/MachineStatus.c" \ -"../Modules/General/Safety.c" \ -"../Modules/General/buttons.c" \ -"../Modules/General/process.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/809fc7998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/809fc7998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/809fc7998f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/d040989b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/d040989b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/d040989b8f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/e014919b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/e014919b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/e014919b8f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/e0e86218b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/e0e86218b66e001a173da96cce181ab0 deleted file mode 100644 index 35c800d63..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/e0e86218b66e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/00f0eae68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/00f0eae68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/00f0eae68f71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/201ba04f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/201ba04f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/201ba04f9571001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/206a3ae39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/206a3ae39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/206a3ae39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/3007a59a8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/3007a59a8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/3007a59a8f71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/60db94509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/60db94509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/60db94509571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/700bd2509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/700bd2509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/700bd2509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/71dafa4e9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/71dafa4e9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/71dafa4e9571001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/71deaa9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/71deaa9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/71deaa9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/805348cd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/805348cd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/805348cd9071001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/90cc066c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/90cc066c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/90cc066c8771001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/d0dd18e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/d0dd18e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/d0dd18e78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/e0ea8c8db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/e0ea8c8db56e001a173da96cce181ab0 deleted file mode 100644 index 233b95060..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/e0ea8c8db56e001a173da96cce181ab0 +++ /dev/null @@ -1,632 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ -../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ -../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ -../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ -../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ -../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ -../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ -../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ -../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ -../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ -../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ -../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ -../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ -../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ -../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ -../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ -../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ -../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ -../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ -../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ -../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ -../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ -../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ -../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ -../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ -../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ -../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ -../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ -../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ -../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ -../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ -../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ -../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ -../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ -../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ -../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ -../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ -../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ -../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ -../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ -../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ -../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ -../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ -../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ -../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ -../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ -../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ -../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ -../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ -../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ -../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ -../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ -../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ -../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ -../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ -../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ -../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ -../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ -../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ -../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ -../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ -../Communication/PMR/Stubs/StubValveResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ -./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ -./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ -./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ -./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ -./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ -./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ -./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ -./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ -./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ -./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ -./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ -./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ -./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ -./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ -./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ -./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ -./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ -./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ -./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ -./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ -./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ -./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ -./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ -./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ -./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ -./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ -./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ -./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ -./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ -./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ -./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ -./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ -./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ -./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ -./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ -./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ -./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ -./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ -./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ -./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ -./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ -./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ -./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ -./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ -./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ -./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ -./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ -./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ -./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ -./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ -./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ -./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ -./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ -./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ -./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ -./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ -./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ -./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ -./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ -./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ -./Communication/PMR/Stubs/StubValveResponse.pb-c.d - -OBJS += \ -./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ -./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ -./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ -./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubValveResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ -"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ -"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ -"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ -"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ -"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ -"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubValveResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ -"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ -"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ -"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/317e2e8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/317e2e8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/317e2e8a9571001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/40023d519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/40023d519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/40023d519571001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/40f5f2998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/40f5f2998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/40f5f2998f71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/701491acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/701491acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 9c82ff358..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/701491acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/DAC/Blower.c - -C_DEPS += \ -./Drivers/I2C_Communication/DAC/Blower.d - -OBJS += \ -./Drivers/I2C_Communication/DAC/Blower.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\DAC\Blower.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\DAC\Blower.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/DAC/Blower.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/70e4318b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/70e4318b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/70e4318b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/904425aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/904425aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 460474bb5..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/904425aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/CommunicationTask.c \ -../Communication/Connection.c \ -../Communication/Container.c - -C_DEPS += \ -./Communication/CommunicationTask.d \ -./Communication/Connection.d \ -./Communication/Container.d - -OBJS += \ -./Communication/CommunicationTask.obj \ -./Communication/Connection.obj \ -./Communication/Container.obj - -OBJS__QUOTED += \ -"Communication\CommunicationTask.obj" \ -"Communication\Connection.obj" \ -"Communication\Container.obj" - -C_DEPS__QUOTED += \ -"Communication\CommunicationTask.d" \ -"Communication\Connection.d" \ -"Communication\Container.d" - -C_SRCS__QUOTED += \ -"../Communication/CommunicationTask.c" \ -"../Communication/Connection.c" \ -"../Communication/Container.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/9073e0e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/9073e0e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/9073e0e78f71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/90c6b08db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/90c6b08db56e001a173da96cce181ab0 deleted file mode 100644 index 86e61b207..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/90c6b08db56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/b1e3bb388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/b1e3bb388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/b1e3bb388871001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/c1a8ef398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/c1a8ef398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/c1a8ef398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/e18154519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/e18154519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/e18154519571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/10cf6518b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/10cf6518b66e001a173da96cce181ab0 deleted file mode 100644 index f802ef559..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/10cf6518b66e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ -../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c - -C_DEPS += \ -./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ -./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d - -OBJS += \ -./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ -./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ -"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ -"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ -"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/2070a518b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/2070a518b66e001a173da96cce181ab0 deleted file mode 100644 index aee99823b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/2070a518b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/USB_Communication/USBCDCD.c - -C_DEPS += \ -./Drivers/USB_Communication/USBCDCD.d - -OBJS += \ -./Drivers/USB_Communication/USBCDCD.obj - -OBJS__QUOTED += \ -"Drivers\USB_Communication\USBCDCD.obj" - -C_DEPS__QUOTED += \ -"Drivers\USB_Communication\USBCDCD.d" - -C_SRCS__QUOTED += \ -"../Drivers/USB_Communication/USBCDCD.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/207cb2cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/207cb2cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/207cb2cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/4011bbe78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/4011bbe78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/4011bbe78f71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/401f8fe78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/401f8fe78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/401f8fe78f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/9028eeacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/9028eeacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 2a1ae80e0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/9028eeacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ -../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ -./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ -./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ -"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ -"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ -"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/d02639509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/d02639509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/d02639509571001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/d02f76509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/d02f76509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/d02f76509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/f2d2edb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/f2d2edb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/f2d2edb48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/409ee5e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/409ee5e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/409ee5e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/50c13dcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/50c13dcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/50c13dcc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/602172e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/602172e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/602172e78f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/90fae1a99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/90fae1a99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/90fae1a99071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/a0aca1509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/a0aca1509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/a0aca1509571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/a133b7398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/a133b7398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/a133b7398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/c1a5df8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/c1a5df8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/c1a5df8a9571001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/d016cbe78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/d016cbe78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/d016cbe78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f0c3fe398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f0c3fe398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f0c3fe398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/007afc398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/007afc398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/007afc398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/1063fa17b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/1063fa17b66e001a173da96cce181ab0 deleted file mode 100644 index 233b95060..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/1063fa17b66e001a173da96cce181ab0 +++ /dev/null @@ -1,632 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ -../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ -../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ -../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ -../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ -../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ -../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ -../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ -../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ -../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ -../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ -../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ -../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ -../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ -../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ -../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ -../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ -../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ -../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ -../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ -../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ -../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ -../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ -../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ -../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ -../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ -../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ -../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ -../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ -../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ -../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ -../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ -../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ -../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ -../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ -../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ -../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ -../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ -../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ -../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ -../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ -../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ -../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ -../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ -../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ -../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ -../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ -../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ -../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ -../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ -../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ -../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ -../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ -../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ -../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ -../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ -../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ -../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ -../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ -../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ -../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ -../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ -../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ -../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ -../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ -../Communication/PMR/Stubs/StubValveResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ -./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ -./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ -./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ -./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ -./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ -./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ -./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ -./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ -./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ -./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ -./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ -./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ -./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ -./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ -./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ -./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ -./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ -./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ -./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ -./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ -./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ -./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ -./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ -./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ -./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ -./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ -./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ -./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ -./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ -./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ -./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ -./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ -./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ -./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ -./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ -./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ -./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ -./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ -./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ -./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ -./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ -./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ -./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ -./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ -./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ -./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ -./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ -./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ -./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ -./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ -./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ -./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ -./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ -./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ -./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ -./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ -./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ -./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ -./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ -./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ -./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ -./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ -./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ -./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ -./Communication/PMR/Stubs/StubValveResponse.pb-c.d - -OBJS += \ -./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ -./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ -./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ -./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ -./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ -./Communication/PMR/Stubs/StubValveResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ -"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ -"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ -"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ -"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ -"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ -"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ -"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ -"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ -"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ -"Communication\PMR\Stubs\StubValveResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ -"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ -"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ -"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ -"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ -"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/40ea8fca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/40ea8fca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/40ea8fca9071001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/60e153cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/60e153cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/60e153cc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/6180a5398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/6180a5398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/6180a5398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/70e39b398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/70e39b398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/70e39b398871001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/808c8be29a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/808c8be29a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/808c8be29a71001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/d01b0d3a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/d01b0d3a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/d01b0d3a8871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/d0fc3e8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/d0fc3e8eb56e001a173da96cce181ab0 deleted file mode 100644 index 46d9242fd..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/d0fc3e8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/4117fb509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/4117fb509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/4117fb509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/41d1c9398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/41d1c9398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/41d1c9398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/50c8e3acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/50c8e3acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index f38ee981c..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/50c8e3acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ -../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ -./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ -./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ -"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ -"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ -"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/70f0e2e19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/70f0e2e19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/70f0e2e19a71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/806b06adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/806b06adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 8f295c82e..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/806b06adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/SSI_Comm/Dancer/Dancer.c - -C_DEPS += \ -./Drivers/SSI_Comm/Dancer/Dancer.d - -OBJS += \ -./Drivers/SSI_Comm/Dancer/Dancer.obj - -OBJS__QUOTED += \ -"Drivers\SSI_Comm\Dancer\Dancer.obj" - -C_DEPS__QUOTED += \ -"Drivers\SSI_Comm\Dancer\Dancer.d" - -C_SRCS__QUOTED += \ -"../Drivers/SSI_Comm/Dancer/Dancer.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/c0d6113a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/c0d6113a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/c0d6113a8871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/d070bce78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/d070bce78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/d070bce78f71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/e08a84398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/e08a84398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/e08a84398871001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/f0041badb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/f0041badb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/f0041badb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/105de4b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/105de4b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/105de4b48771001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/10968a8cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/10968a8cb56e001a173da96cce181ab0 deleted file mode 100644 index 2b479abab..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/10968a8cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,463 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/2035e8acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/2035e8acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 3a03cd26b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/2035e8acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/20e3fa18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/20e3fa18b66e001a173da96cce181ab0 deleted file mode 100644 index cb2c2ad65..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/20e3fa18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../StateMachines/Initialization/InitSequence.c \ -../StateMachines/Initialization/PowerIdle.c \ -../StateMachines/Initialization/PowerOffSequence.c - -C_DEPS += \ -./StateMachines/Initialization/InitSequence.d \ -./StateMachines/Initialization/PowerIdle.d \ -./StateMachines/Initialization/PowerOffSequence.d - -OBJS += \ -./StateMachines/Initialization/InitSequence.obj \ -./StateMachines/Initialization/PowerIdle.obj \ -./StateMachines/Initialization/PowerOffSequence.obj - -OBJS__QUOTED += \ -"StateMachines\Initialization\InitSequence.obj" \ -"StateMachines\Initialization\PowerIdle.obj" \ -"StateMachines\Initialization\PowerOffSequence.obj" - -C_DEPS__QUOTED += \ -"StateMachines\Initialization\InitSequence.d" \ -"StateMachines\Initialization\PowerIdle.d" \ -"StateMachines\Initialization\PowerOffSequence.d" - -C_SRCS__QUOTED += \ -"../StateMachines/Initialization/InitSequence.c" \ -"../StateMachines/Initialization/PowerIdle.c" \ -"../StateMachines/Initialization/PowerOffSequence.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/a0e1458b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/a0e1458b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/a0e1458b9571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/4063f76b8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/4063f76b8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/4063f76b8771001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/500457429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/500457429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/500457429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/507edfe68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/507edfe68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/507edfe68f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/70db65ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/70db65ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/70db65ab9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/905829e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/905829e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/905829e78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/a0fb1fb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/a0fb1fb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/a0fb1fb48771001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/d04342429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/d04342429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/d04342429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/f0a2f38a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/f0a2f38a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/f0a2f38a9571001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/4074c9998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/4074c9998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/4074c9998f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/50bf17398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/50bf17398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/50bf17398871001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/70abf19b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/70abf19b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/70abf19b8f71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/d140989b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/d140989b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/d140989b8f71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/00382baab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/00382baab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 31bc6b321..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/00382baab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Common/ErrorCode.pb-c.c \ -../Communication/PMR/Common/ErrorResponse.pb-c.c \ -../Communication/PMR/Common/MessageContainer.pb-c.c \ -../Communication/PMR/Common/MessageType.pb-c.c - -C_DEPS += \ -./Communication/PMR/Common/ErrorCode.pb-c.d \ -./Communication/PMR/Common/ErrorResponse.pb-c.d \ -./Communication/PMR/Common/MessageContainer.pb-c.d \ -./Communication/PMR/Common/MessageType.pb-c.d - -OBJS += \ -./Communication/PMR/Common/ErrorCode.pb-c.obj \ -./Communication/PMR/Common/ErrorResponse.pb-c.obj \ -./Communication/PMR/Common/MessageContainer.pb-c.obj \ -./Communication/PMR/Common/MessageType.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Common\ErrorCode.pb-c.obj" \ -"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ -"Communication\PMR\Common\MessageContainer.pb-c.obj" \ -"Communication\PMR\Common\MessageType.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Common\ErrorCode.pb-c.d" \ -"Communication\PMR\Common\ErrorResponse.pb-c.d" \ -"Communication\PMR\Common\MessageContainer.pb-c.d" \ -"Communication\PMR\Common\MessageType.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Common/ErrorCode.pb-c.c" \ -"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ -"../Communication/PMR/Common/MessageContainer.pb-c.c" \ -"../Communication/PMR/Common/MessageType.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/1027639b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/1027639b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/1027639b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/109f7ccc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/109f7ccc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/109f7ccc9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/4136376d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/4136376d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/4136376d8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/509b78e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/509b78e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/509b78e58f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/703c35668771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/703c35668771001a1f70833eb9ed7011 new file mode 100644 index 000000000..76a92bd89 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/703c35668771001a1f70833eb9ed7011 @@ -0,0 +1,777 @@ + +#include +#include +#include +#include +#include "include.h" +#include "driverlib/gpio.h" + +#include "Communication/Connection.h" + +#include "Drivers/USB_Communication/USBCDCD.h" +#include "StateMachines/Initialization/PowerOffSequence.h" +#include "StateMachines/Initialization/PowerIdle.h" + +#include "drivers/Flash_Memory/FATFS/ff.h" +#include "drivers/Flash_Memory/FATFS/Control_File_System.h" +#include "drivers/Flash_ram/FlashProgram.h" +#include "drivers/adc_sampling/adc.h" +#include "drivers/Heater/TemperatureSensor.h" +#include "drivers/ADC_Sampling/adc.h" +#include "drivers/Flash_ram/MCU_E2Prom.h" +#include "Drivers/SSI_Comm/Dancer/Dancer.h" + +#include "Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/fan_click.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.h" +#include "drivers/Motors/Motor.h" +#include "drivers/FPGA/FPGA_SPI_Comm.h" +#include "Modules/IFS/ifs.h" +#include "Modules/IDS/ids_ex.h" +#include "Modules/Control/MillisecTask.h" +#include "modules/thread/thread_ex.h" +#include "modules/heaters/heaters_ex.h" +#include +#include +#include "Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.h" +#include "drivers/adc_sampling/adc.h" +#include +#include +#include +#include +#include +#include +#include + + +#include "Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.h" + + + +extern float NumberOfRotationPerPassage; // how many rotations per spool passage + +//#include "graphics_adapter.h" +extern uint8_t Input_Voltage; +extern uint8_t Test_Read_Buf[4]; + +extern uint8_t Head_Fan_PWM_Command[2]; +extern uint16_t Head_Fan_Tach[2]; + +void Stub_ProgressRequest(MessageContainer* requestContainer) +{ + MessageContainer responseContainer; + + ProgressRequest* request = progress_request__unpack(NULL, requestContainer->data.len, requestContainer->data.data); + + //writeLine("Progress Request..."); + + ProgressResponse response = PROGRESS_RESPONSE__INIT; + +// uint8_t high_byte = 0; +// uint8_t low_byte = 0; + + uint8_t addr = 0; + uint8_t port = 0; + uint8_t pin = 0; + uint8_t value= 0; + + if(request->amount == 0x3E9) // set TCA9555 u3 or u4 + { + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay & 0x8000) // bit15 select the chip address + { + addr = I2CExp2_ADDRESS; + } + else + { + addr = I2CExp1_ADDRESS; + } + + if (request->delay & 0x4000) // bit 14 select port 0 or 1 + { + port = D_TCA9555_PORT_1; + } + else + { + port = D_TCA9555_PORT_0; + } + + pin = ((request->delay & 0x0F00) >> 8); // 8..11 + + if (request->delay & 0x0001) + { + value = 1; + } + else + { + value = 0; + } + response.progress = Write_WHS_9555_io_value( addr, port, pin, value); + response.has_progress = true; + } + } + else + if(request->amount == 0x3E8) //&& (request->delay <= 0x0fff))// set WHS Blower speed 0x00-0xfff + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_enable_control_loop( request->delay & 0x1000);//disable control loop: 0=disable 1= enable + Trigger_SetWHSBlowerVoltage (request->delay & 0x0FFF); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E7) // set WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_Set_SetPoint_Q_value((double) request->delay); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E6) // get WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + response.progress = WHS_Get_Volt_Blower_Control(); + //response.progress = 0; + response.has_progress = true; + } + } + // WHS_Get_Volt_Blower_Control + else + if(request->amount == 0x3EA) + { + uint16_t tempu16 = 0; + double temp_double = 0.0; + uint8_t display_byte = 0; + uint16_t A2D_data = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + display_byte = ((request->delay & 0x3000)>>12); + switch (display_byte) + { + case 0: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x0000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(DrierAVERAGE); + break; + case 1: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x1000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(HeadCURRENT); + break; + case 2: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x2000); // + SetLeftDisplayView (DrierAVERAGE); + SetWriteDisplayView(DrierCURRENT); + break; + case 3: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x3000); // + SetLeftDisplayView (HeadCURRENT); + SetWriteDisplayView(DrierCURRENT); + break; + } + + A2D_data = (request->delay & 0x0FFF); + switch(A2D_data )// get A2D + { + case 0: + get_orf_1(&tempu16); + break; + case 1: + get_orf_2(&tempu16); + break; + case 2: + get_orf_3(&tempu16); + break; + case 3: + get_vlev1(&tempu16); + break; + case 4: + get_vlev2(&tempu16); + break; + case 5: + get_gas_out(&tempu16); + break; + case 6: + get_cur_fan(&tempu16); + break; + case 7: + get_cur_vlv1(&tempu16); + break; + case 8: + tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + case 10: + temp_double = get_Q(HEAD_FLOW_METER); + break; + case 12: + temp_double = get_Q(DRIER_FLOW_METER); + break; + case 20: + temp_double = get_average_Q(HEAD_FLOW_METER); //HEAD + break; + case 22: + temp_double = get_average_Q(DRIER_FLOW_METER); //Drier + break; + + case 11: + //get_orf_2(&tempu16); + break; + case 13: + //get_vlev1(&tempu16); + break; + case 14: + //get_vlev2(&tempu16); + break; + case 15: + //get_gas_out(&tempu16); + break; + case 16: + //get_cur_fan(&tempu16); + break; + case 17: + //get_cur_vlv1(&tempu16); + break; + case 18: + //tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + default : + tempu16 = 0x500; //get_cur_vlv2(&tempu16); + break; + } + } + if ((request->delay)<10) + { + response.progress = (double)tempu16; + } + else + { + response.progress = temp_double; + } + response.has_progress = true; + } + else // + if(request->amount == 0x3EB) + { + uint16_t tempu16 = 0; + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay <= 0x03FF) + { + Trigger_WHS_Set_RDAC(request->delay); // 0 -> 0x03FF + } + else + { + //Trigger_WHS_set_Rheostat_to_CLEAN_AIR(); + } + get_gas_out(&tempu16); + } + response.progress = (double)tempu16; + response.has_progress = true; + } + else + if((request->amount == 0xDE) && (request->delay < 8) && (request->delay >= 0)) // read dispenser type + LS status + { + response.progress = ((Dispenser_struct[request->delay].Type) << 8) + Dispenser_struct[request->delay].Status; + response.has_progress = true; + } + else + if(request->amount == 0xAD) //undef AUTO_HOME_DISPENSERS + { + if ((request->delay >=AutoHoming_off )&&(request->delay<=AutoHoming_JobEnd_PowerOn_off )) + IDS_Dispenser_SetAutoHoming_Config(request->delay); + response.progress = 01; + response.has_progress = true; + } + else + if(request->amount == 0xAD1) //Set_Check_Pressure_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Check_Pressure_Bypass"); + response.progress = Set_Check_Pressure_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD2) //Set_Thread_Rockers_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Thread_Rockers_Bypass"); + response.progress = Set_Thread_Rockers_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD3) //Set_Auto_Shutdown_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Shutdown_Bypass"); + response.progress = Set_Auto_Shutdown_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD4) //Set_Auto_Idle_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Idle_Bypass"); + response.progress = Set_Auto_Idle_Bypass(request->delay); + response.has_progress = true; + } + else + if((request->amount == 0x01) && ((request->delay &0x010000) == 0x010000)) //change mode powerset01 + { + response.progress = Power_Step_01_Mode(((request->delay &0x00FF00)>>8), request->delay &0x0000FF); + response.has_progress = true; + } + else + if((request->amount == 0xAB) && (request->delay == 0xAB)) //Get pressure with flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(true); + response.has_progress = true; + + } + else + if((request->amount == 0xAB) && (request->delay == 0x0)) //measured sensor voltage without flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(false); + response.has_progress = true; + + } + else + if((request->amount == 0xAC) && (request->delay == 0xAC)) //VAC + { + response.progress = ReadVAC(); + response.has_progress = true; + + } + else + if(request->amount == 0x0EAD) //Head Card I/O + { + uint8_t Read_Buf[1] = {0}; + uint8_t Write_Buf[2] = {0,0}; + uint8_t Script_Slave_Add = request -> delay >> 16;//Slave address 0x40 / 0x42 / 0x44 / 0x46 + Write_Buf[0] = (request -> delay & 0x00FF00) >> 8;//read/write low/high + /* + ------------------ + | Byte | WR | RD | + ------------------ + | Low | 02 | 00 | + | High | 03 | 01 | + ------------------ + */ + Write_Buf[1] = request -> delay & 0x0000FF;//data to write + + response.has_progress = false; + + Select_Main_Head_Mux_Channel(); + + if(Write_Buf[0] == 0)//Read + { + Head_Read_IO_Reg(Script_Slave_Add, LOW); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46) + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + + if(Write_Buf[0] == 1)//Read + { + Head_Read_IO_Reg(Script_Slave_Add, HIGH); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46) + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + if(Write_Buf[0] == 2)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + Head_I2C_EXP2_0x42.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); + } + + Head_Write_IO_Reg(Script_Slave_Add, LOW); + } + if(Write_Buf[0] == 3)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[1] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + Head_I2C_EXP2_0x42.uchar[1] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP3_0x44.uchar[1] = (Write_Buf[1] & 0x0C); + } + Head_Write_IO_Reg(Script_Slave_Add, HIGH); + } + } + else + if(request->amount == 0xFEAD) //functions Head Card I/O + { + Select_Main_Head_Mux_Channel(); + + if((request -> delay & 0xFFF000) == 0xCAF000)//Actuator + { + //HeadCard_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), /*(bool)((request -> delay & 0x10)>>4), */(bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + Trigger_Head_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), (bool)((request -> delay & 0x10)>>4), (bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + //response.progress = HeadCard_Actuators_Status((ACTUATORS)((request -> delay) & 0x100)>>8); + response.has_progress = true; + } + else + if((request -> delay & 0xFF0000) == 0xCA0000)//control all heaters + { + if(request -> delay & 0x01) + { + Disconnect_Mixer_and_12_Heaters_Latch(); + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, TRUE); + Connect_Mixer_and_12_Heaters_Latch(); + } + else + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, FALSE); + } + else + if(request -> delay == 0x0)//return head type + { + response.progress = Head_Type; + response.has_progress = true; + } + + } + else + if((request->amount == 0xFAC0) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + //Head_Fan_PWM_Command[0] = (request->delay & 0xFF) ; + //Test_Head_fan_Click(); + + Trigger_Head_Fan_Control(HEAD_FAN_RIGHT, request->delay & 0xFF); + Task_sleep(2000); + + //response.progress = Fan_Click_Info.Product_ID; + response.progress = Head_Fan_Tach[0]; + response.has_progress = true; + + } + else + if((request->amount == 0xFAC1) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + Trigger_Head_Fan_Control(HEAD_FAN_LEFT, request->delay & 0xFF); + Task_sleep(2000); + response.progress = Head_Fan_Tach[1]; + response.has_progress = true; + } + else + if ((request->amount & 0x0000FFF0) == 0xFAC0) //WHS Fan control + { + uint16_t fan_tacho = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + Trigger_SetWHSFanSpeed(((request->amount & 0x0000000F)-1) , request->delay & 0x000000FF); + Task_sleep(2000); + fan_tacho = WHS_Get_fan_tach( (request->amount & 0x0000000F)-1); + } + response.progress = fan_tacho; + response.has_progress = true; + } + else + if((request->amount == 0x0A) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Initial_Offset_A[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0xB) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Slope_B[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0x5C4E) && (request->delay == 0x5C4E)) //Screw Home Pos dir + { + test_Home_Pos(); + } + else + if((request->amount == 0x100) && (request->delay == 0x100)) //head card PT100 + { + Test_HeadCard_PT100(TEMP_SENSE_ANALOG_DYEINGH_TEMP1); + //response.progress = (double)Test_Read_Buf[0]; + response.progress = (double)Data_ADC_Head; + response.has_progress = true; + } + else + if((request->amount == 0x0D) && (request->delay == 0xEE)) //Dispenser EEprom + { + test_disp_eeprom(0x01,0xA0); + response.progress = OK; + response.has_progress = true; + } + else + if((request->amount == 0xCF) && (request->delay == 0xCF)) //Create File System on the Drive + { +#ifdef WATCHDOG + ROM_WatchdogResetDisable(WATCHDOG0_BASE); + uint32_t timeout = 0xFFFFFFFFU; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + FRESULT iFResult = Init_Flash_File_System(true); + if(iFResult != FR_OK) + { + LOG_ERROR (iFResult, "Error during init Flash File System"); + assert(iFResult); + } +#ifdef WATCHDOG + ROM_WatchdogResetEnable(WATCHDOG0_BASE); + timeout = 120000000*3; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + } + else + if((request->amount == 0x0C) && (request->delay == 0x0C)) //Get Gas Sensor + { + response.progress = (double)Calculate_Gas_Power_Consumption(); + response.has_progress = true; + + } + else + if((request->amount == 0xDD) && (request->delay == 0xDD)) //Read Input Voltage + { + LOG_ERROR(request->delay,"CheckAcInputVoltage"); + CheckAcInputVoltage(); + + response.progress = (double)Input_Voltage; + response.has_progress = true; + } + else + if((request->amount == 0x0CE) && (request->delay == 0x0CE)) //Get Gas Sensor + { + LOG_ERROR(request->delay,"FlashInit"); + FlashInit(); + response.progress = (double)OK; + response.has_progress = true; + + } + else + if(request->amount == 0x0CC) //Cartridge Validation Response Demo + { + LOG_ERROR(request->delay,"ResponseDemo"); + ResponseDemo(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE0) //fast refresh for pressure + { + LOG_ERROR(request->delay,"setRapidPressureRead"); + setRapidPressureRead(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Starting Dispenser PID"); + IDS_Start_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE2) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Stoping Dispenser PID"); + IDS_Stop_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xB1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Set loading arm center"); + Read_Dryer_ENC_Position(); + Task_sleep(500); + Read_Dryer_ENC_Position(); + Task_sleep(500); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CENTER,Read_Dryer_ENC_Position(0,0)); + response.has_progress = true; + } + else + if(request->amount == 0xB2) //Set loading arm cycles + { + LOG_ERROR(request->delay,"Set loading arm cycles"); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CYCLES,request->delay); + response.has_progress = true; + } + + else + if(request->amount == 0xB3) //fast refresh for pressure + { + LOG_ERROR(request->amount,"keep alive test"); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB4) //IDS_Dispenser_Content_Init + { + LOG_ERROR(request->amount,"IDS_Dispenser_Content_Init"); + IDS_Dispenser_Content_Init(); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB5) //fast refresh for pressure + { + if (request->delay<=100) + { + LOG_ERROR(request->delay,"set stub_heating_limit"); + stub_heating_limit = request->delay; + } + response.progress = request->delay; + response.has_progress = true; + + } +#ifdef VAC_TEST + else + if(request->amount == 0xB6) //fast refresh for pressure + { + LOG_ERROR(request->delay,"set vac read test"); + VAC_Test = (double)request->delay; + response.progress = request->delay; + response.has_progress = true; + + } +#endif + + else + if(request->amount == 0xC3) //suspend I2C task + { + if (request->delay == 0) + { + LOG_ERROR(request->delay,"Suspend I2C"); + PowerOffHeatersOff(); + Task_sleep(1000); + Task_setPri (I2C_Task_Handle,-1); + } + else + { + LOG_ERROR(request->delay,"Resume"); + Task_setPri (I2C_Task_Handle,8); + } + response.progress = request->delay; + response.has_progress = true; + + } + else + if((request->amount == 0xDF) && (request->delay == 0xDF)) //Power off + { + PowerOffInit(); + } + else + if(request->amount == 0xF1) + { + LOG_ERROR(request->delay,"NumberOfRotationPerPassage"); + NumberOfRotationPerPassage = (float)(request->delay)/1000; + } + else + { + response.has_progress = true; + int i = 0; + for (i = 0; i < request->amount; i++) + { + response.progress = i; + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, false, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + + int co = 0; + for (co = 0; co < request->delay; co++) + { + __delay_cycles(1000000); + } + } + } + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, true, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + //writeLine("Progress Completed!"); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + return; + +} diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/70df84acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/70df84acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 368691401..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/70df84acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Heater/ADS1220.c \ -../Drivers/Heater/Heater.c \ -../Drivers/Heater/TemperatureSensor.c - -C_DEPS += \ -./Drivers/Heater/ADS1220.d \ -./Drivers/Heater/Heater.d \ -./Drivers/Heater/TemperatureSensor.d - -OBJS += \ -./Drivers/Heater/ADS1220.obj \ -./Drivers/Heater/Heater.obj \ -./Drivers/Heater/TemperatureSensor.obj - -OBJS__QUOTED += \ -"Drivers\Heater\ADS1220.obj" \ -"Drivers\Heater\Heater.obj" \ -"Drivers\Heater\TemperatureSensor.obj" - -C_DEPS__QUOTED += \ -"Drivers\Heater\ADS1220.d" \ -"Drivers\Heater\Heater.d" \ -"Drivers\Heater\TemperatureSensor.d" - -C_SRCS__QUOTED += \ -"../Drivers/Heater/ADS1220.c" \ -"../Drivers/Heater/Heater.c" \ -"../Drivers/Heater/TemperatureSensor.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/807206aa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/807206aa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/807206aa9071001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/a1f3776e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/a1f3776e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/a1f3776e8771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/c01562ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/c01562ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/c01562ac9071001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/c146dcb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/c146dcb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/c146dcb48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/01e2679b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/01e2679b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/01e2679b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/40ac2b18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/40ac2b18b66e001a173da96cce181ab0 deleted file mode 100644 index 47bbb9bfd..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/40ac2b18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/61cf30b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/61cf30b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/61cf30b58771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/70ecade39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/70ecade39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/70ecade39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/b0339daab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/b0339daab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 2b479abab..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/b0339daab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,463 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/b082fea9b06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/b082fea9b06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 71dcae149..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/b082fea9b06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/c06e9318b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/c06e9318b66e001a173da96cce181ab0 deleted file mode 100644 index 46d9242fd..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/c06e9318b66e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/e01875e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/e01875e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/e01875e58f71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/f07a116c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/f07a116c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/f07a116c8771001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/f0d9c3ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/f0d9c3ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/f0d9c3ab9071001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/00f6d518b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/00f6d518b66e001a173da96cce181ab0 deleted file mode 100644 index 7cbd9a7eb..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/00f6d518b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/1079f18db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/1079f18db56e001a173da96cce181ab0 deleted file mode 100644 index 94a17d396..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/1079f18db56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/40b63cb58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/40b63cb58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/40b63cb58771001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/808c458eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/808c458eb56e001a173da96cce181ab0 deleted file mode 100644 index 9a06f1546..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/808c458eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/90ae49b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/90ae49b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/90ae49b58771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/a0f74fadb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/a0f74fadb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 062005c16..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/a0f74fadb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/Heaters/Heaters_bit.c \ -../Modules/Heaters/Heaters_init.c \ -../Modules/Heaters/Heaters_maint.c \ -../Modules/Heaters/Heaters_print.c - -C_DEPS += \ -./Modules/Heaters/Heaters_bit.d \ -./Modules/Heaters/Heaters_init.d \ -./Modules/Heaters/Heaters_maint.d \ -./Modules/Heaters/Heaters_print.d - -OBJS += \ -./Modules/Heaters/Heaters_bit.obj \ -./Modules/Heaters/Heaters_init.obj \ -./Modules/Heaters/Heaters_maint.obj \ -./Modules/Heaters/Heaters_print.obj - -OBJS__QUOTED += \ -"Modules\Heaters\Heaters_bit.obj" \ -"Modules\Heaters\Heaters_init.obj" \ -"Modules\Heaters\Heaters_maint.obj" \ -"Modules\Heaters\Heaters_print.obj" - -C_DEPS__QUOTED += \ -"Modules\Heaters\Heaters_bit.d" \ -"Modules\Heaters\Heaters_init.d" \ -"Modules\Heaters\Heaters_maint.d" \ -"Modules\Heaters\Heaters_print.d" - -C_SRCS__QUOTED += \ -"../Modules/Heaters/Heaters_bit.c" \ -"../Modules/Heaters/Heaters_init.c" \ -"../Modules/Heaters/Heaters_maint.c" \ -"../Modules/Heaters/Heaters_print.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/00d2a6429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/00d2a6429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/00d2a6429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/2074228eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/2074228eb56e001a173da96cce181ab0 deleted file mode 100644 index e9d88a3ed..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/2074228eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ -../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ -./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ -./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ -"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ -"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ -"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/2095a5ca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/2095a5ca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/2095a5ca9071001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/408bda998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/408bda998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/408bda998f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/506ff98a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/506ff98a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/506ff98a9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/b073c19b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/b073c19b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/b073c19b8f71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/b0a48d429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/b0a48d429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/b0a48d429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/b0f4a6ca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/b0f4a6ca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/b0f4a6ca9071001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/b196ad398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/b196ad398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/b196ad398871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/d019c6429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/d019c6429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/d019c6429b71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/f053928b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/f053928b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/f053928b9571001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/f0e9eaab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/f0e9eaab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e3/f0e9eaab9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/204c3fe39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/204c3fe39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/204c3fe39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/3086ffb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/3086ffb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/3086ffb48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/5010f6b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/5010f6b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/5010f6b48771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/50ec346d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/50ec346d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/50ec346d8771001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/60d12ee39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/60d12ee39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/60d12ee39a71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/70f4599a8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/70f4599a8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/70f4599a8f71001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/817e0cb58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/817e0cb58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/817e0cb58771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/90996d429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/90996d429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/90996d429b71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/d0641a8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/d0641a8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/d0641a8b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/018fba398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/018fba398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/018fba398871001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/314c5cb58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/314c5cb58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/314c5cb58771001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/502ffee39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/502ffee39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/502ffee39a71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/70285eadb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/70285eadb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index b2f93b2cc..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/70285eadb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/IFS/ifs.c - -C_DEPS += \ -./Modules/IFS/ifs.d - -OBJS += \ -./Modules/IFS/ifs.obj - -OBJS__QUOTED += \ -"Modules\IFS\ifs.obj" - -C_DEPS__QUOTED += \ -"Modules\IFS\ifs.d" - -C_SRCS__QUOTED += \ -"../Modules/IFS/ifs.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/9081b4e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/9081b4e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/9081b4e78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/e00967429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/e00967429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/e00967429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/704d43adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/704d43adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index a2a449f77..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/704d43adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/Diagnostics/DiagnosticActions.c \ -../Modules/Diagnostics/Diagnostics.c \ -../Modules/Diagnostics/DiagnosticsHoming.c \ -../Modules/Diagnostics/DiagnosticsJogging.c - -C_DEPS += \ -./Modules/Diagnostics/DiagnosticActions.d \ -./Modules/Diagnostics/Diagnostics.d \ -./Modules/Diagnostics/DiagnosticsHoming.d \ -./Modules/Diagnostics/DiagnosticsJogging.d - -OBJS += \ -./Modules/Diagnostics/DiagnosticActions.obj \ -./Modules/Diagnostics/Diagnostics.obj \ -./Modules/Diagnostics/DiagnosticsHoming.obj \ -./Modules/Diagnostics/DiagnosticsJogging.obj - -OBJS__QUOTED += \ -"Modules\Diagnostics\DiagnosticActions.obj" \ -"Modules\Diagnostics\Diagnostics.obj" \ -"Modules\Diagnostics\DiagnosticsHoming.obj" \ -"Modules\Diagnostics\DiagnosticsJogging.obj" - -C_DEPS__QUOTED += \ -"Modules\Diagnostics\DiagnosticActions.d" \ -"Modules\Diagnostics\Diagnostics.d" \ -"Modules\Diagnostics\DiagnosticsHoming.d" \ -"Modules\Diagnostics\DiagnosticsJogging.d" - -C_SRCS__QUOTED += \ -"../Modules/Diagnostics/DiagnosticActions.c" \ -"../Modules/Diagnostics/Diagnostics.c" \ -"../Modules/Diagnostics/DiagnosticsHoming.c" \ -"../Modules/Diagnostics/DiagnosticsJogging.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/b00eb8aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/b00eb8aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index fe052d491..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/b00eb8aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,104 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ -../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ -../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ -../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ -../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ -../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ -../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ -../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ -../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ -../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ -../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ -../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ -../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ -../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ -./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ -./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ -./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ -./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ -./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ -./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ -./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ -./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ -./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ -./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ -./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ -./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ -./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d - -OBJS += \ -./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ -./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ -"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ -"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ -"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/b0651acd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/b0651acd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/b0651acd9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/b06c313a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/b06c313a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/b06c313a8871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/b0a3e5e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/b0a3e5e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/b0a3e5e78f71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/600ba39a8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/600ba39a8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/600ba39a8f71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/808d183a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/808d183a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/808d183a8871001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/a058429b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/a058429b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/a058429b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/a07450429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/a07450429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/a07450429b71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/d0aaafaa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/d0aaafaa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/d0aaafaa9071001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/502597509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/502597509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/502597509571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/607c8e8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/607c8e8eb56e001a173da96cce181ab0 deleted file mode 100644 index a2a449f77..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/607c8e8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/Diagnostics/DiagnosticActions.c \ -../Modules/Diagnostics/Diagnostics.c \ -../Modules/Diagnostics/DiagnosticsHoming.c \ -../Modules/Diagnostics/DiagnosticsJogging.c - -C_DEPS += \ -./Modules/Diagnostics/DiagnosticActions.d \ -./Modules/Diagnostics/Diagnostics.d \ -./Modules/Diagnostics/DiagnosticsHoming.d \ -./Modules/Diagnostics/DiagnosticsJogging.d - -OBJS += \ -./Modules/Diagnostics/DiagnosticActions.obj \ -./Modules/Diagnostics/Diagnostics.obj \ -./Modules/Diagnostics/DiagnosticsHoming.obj \ -./Modules/Diagnostics/DiagnosticsJogging.obj - -OBJS__QUOTED += \ -"Modules\Diagnostics\DiagnosticActions.obj" \ -"Modules\Diagnostics\Diagnostics.obj" \ -"Modules\Diagnostics\DiagnosticsHoming.obj" \ -"Modules\Diagnostics\DiagnosticsJogging.obj" - -C_DEPS__QUOTED += \ -"Modules\Diagnostics\DiagnosticActions.d" \ -"Modules\Diagnostics\Diagnostics.d" \ -"Modules\Diagnostics\DiagnosticsHoming.d" \ -"Modules\Diagnostics\DiagnosticsJogging.d" - -C_SRCS__QUOTED += \ -"../Modules/Diagnostics/DiagnosticActions.c" \ -"../Modules/Diagnostics/Diagnostics.c" \ -"../Modules/Diagnostics/DiagnosticsHoming.c" \ -"../Modules/Diagnostics/DiagnosticsJogging.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/c0634badb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/c0634badb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 80187ae88..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/c0634badb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,43 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/e0006517b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/e0006517b66e001a173da96cce181ab0 deleted file mode 100644 index 2fb0a39e1..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/e0006517b66e001a173da96cce181ab0 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ -../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ -../Communication/PMR/Power/PowerDownState.pb-c.c \ -../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ -../Communication/PMR/Power/StartPowerDownResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ -./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ -./Communication/PMR/Power/PowerDownState.pb-c.d \ -./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ -./Communication/PMR/Power/StartPowerDownResponse.pb-c.d - -OBJS += \ -./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ -./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ -./Communication/PMR/Power/PowerDownState.pb-c.obj \ -./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ -./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ -"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ -"Communication\PMR\Power\PowerDownState.pb-c.obj" \ -"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ -"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ -"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ -"Communication\PMR\Power\PowerDownState.pb-c.d" \ -"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ -"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ -"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ -"../Communication/PMR/Power/PowerDownState.pb-c.c" \ -"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ -"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/f01205aa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/f01205aa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/f01205aa9071001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/206c5e9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/206c5e9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/206c5e9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/40cab4e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/40cab4e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/40cab4e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/a080c5388871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/a080c5388871001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/a080c5388871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/a0bc4a8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/a0bc4a8eb56e001a173da96cce181ab0 deleted file mode 100644 index 73e3151bc..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/a0bc4a8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/b029b5e19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/b029b5e19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/b029b5e19a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/b190deb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/b190deb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/b190deb48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/c01692e58f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/c01692e58f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/c01692e58f71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/c0a078e29a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/c0a078e29a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/c0a078e29a71001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/f039a4429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/f039a4429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/f039a4429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/00205218b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/00205218b66e001a173da96cce181ab0 deleted file mode 100644 index 9ec5d0604..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/00205218b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/00a6a0e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/00a6a0e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/00a6a0e39a71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/00d5eb509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/00d5eb509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/00d5eb509571001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/104851e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/104851e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/104851e68f71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/20e479e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/20e479e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/20e479e39a71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/307cb3429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/307cb3429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/307cb3429b71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/309bbdb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/309bbdb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/309bbdb48771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/31623e6d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/31623e6d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/31623e6d8771001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/402afe8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/402afe8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/402afe8a9571001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/70e99529c36e001a17dd93e105fd0cb6 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/70e99529c36e001a17dd93e105fd0cb6 deleted file mode 100644 index ccf54efe2..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/70e99529c36e001a17dd93e105fd0cb6 +++ /dev/null @@ -1,79 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -#ifndef _MB_FUNC_H -#define _MB_FUNC_H - -#ifdef __cplusplus -PR_BEGIN_EXTERN_C -#endif -#if MB_FUNC_OTHER_REP_SLAVEID_BUF > 0 - eMBException eMBFuncReportSlaveID( UCHAR * pucFrame, USHORT * usLen ); -#endif - -#if MB_FUNC_READ_INPUT_ENABLED > 0 -eMBException eMBFuncReadInputRegister( UCHAR * pucFrame, USHORT * usLen ); -#endif - -#if MB_FUNC_READ_HOLDING_ENABLED > 0 -eMBException eMBFuncReadHoldingRegister( UCHAR * pucFrame, USHORT * usLen ); -#endif - -#if MB_FUNC_WRITE_HOLDING_ENABLED > 0 -eMBException eMBFuncWriteHoldingRegister( UCHAR * pucFrame, USHORT * usLen ); -#endif - -#if MB_FUNC_WRITE_MULTIPLE_HOLDING_ENABLED > 0 -eMBException eMBFuncWriteMultipleHoldingRegister( UCHAR * pucFrame, USHORT * usLen ); -#endif - -#if MB_FUNC_READ_COILS_ENABLED > 0 -eMBException eMBFuncReadCoils( UCHAR * pucFrame, USHORT * usLen ); -#endif - -#if MB_FUNC_WRITE_COIL_ENABLED > 0 -eMBException eMBFuncWriteCoil( UCHAR * pucFrame, USHORT * usLen ); -#endif - -#if MB_FUNC_WRITE_MULTIPLE_COILS_ENABLED > 0 -eMBException eMBFuncWriteMultipleCoils( UCHAR * pucFrame, USHORT * usLen ); -#endif - -#if MB_FUNC_READ_DISCRETE_INPUTS_ENABLED > 0 -eMBException eMBFuncReadDiscreteInputs( UCHAR * pucFrame, USHORT * usLen ); -#endif - -#if MB_FUNC_READWRITE_HOLDING_ENABLED > 0 -eMBException eMBFuncReadWriteMultipleHoldingRegister( UCHAR * pucFrame, USHORT * usLen ); -#endif - -#ifdef __cplusplus -PR_END_EXTERN_C -#endif -#endif diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/80ef0eb58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/80ef0eb58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/80ef0eb58771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/b02a8917b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/b02a8917b66e001a173da96cce181ab0 deleted file mode 100644 index f340107b5..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/b02a8917b66e001a173da96cce181ab0 +++ /dev/null @@ -1,170 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ -../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ -../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ -../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ -../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ -../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ -../Communication/PMR/Printing/JobBrushStop.pb-c.c \ -../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ -../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ -../Communication/PMR/Printing/JobDispenser.pb-c.c \ -../Communication/PMR/Printing/JobRequest.pb-c.c \ -../Communication/PMR/Printing/JobResponse.pb-c.c \ -../Communication/PMR/Printing/JobSegment.pb-c.c \ -../Communication/PMR/Printing/JobSpool.pb-c.c \ -../Communication/PMR/Printing/JobSpoolType.pb-c.c \ -../Communication/PMR/Printing/JobStatus.pb-c.c \ -../Communication/PMR/Printing/JobTicket.pb-c.c \ -../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ -../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ -../Communication/PMR/Printing/ProcessParameters.pb-c.c \ -../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ -../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ -../Communication/PMR/Printing/ThreadParameters.pb-c.c \ -../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ -../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ -./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ -./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ -./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ -./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ -./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ -./Communication/PMR/Printing/JobBrushStop.pb-c.d \ -./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ -./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ -./Communication/PMR/Printing/JobDispenser.pb-c.d \ -./Communication/PMR/Printing/JobRequest.pb-c.d \ -./Communication/PMR/Printing/JobResponse.pb-c.d \ -./Communication/PMR/Printing/JobSegment.pb-c.d \ -./Communication/PMR/Printing/JobSpool.pb-c.d \ -./Communication/PMR/Printing/JobSpoolType.pb-c.d \ -./Communication/PMR/Printing/JobStatus.pb-c.d \ -./Communication/PMR/Printing/JobTicket.pb-c.d \ -./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ -./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ -./Communication/PMR/Printing/ProcessParameters.pb-c.d \ -./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ -./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ -./Communication/PMR/Printing/ThreadParameters.pb-c.d \ -./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ -./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d - -OBJS += \ -./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ -./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ -./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ -./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ -./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ -./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ -./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ -./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ -./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ -./Communication/PMR/Printing/JobDispenser.pb-c.obj \ -./Communication/PMR/Printing/JobRequest.pb-c.obj \ -./Communication/PMR/Printing/JobResponse.pb-c.obj \ -./Communication/PMR/Printing/JobSegment.pb-c.obj \ -./Communication/PMR/Printing/JobSpool.pb-c.obj \ -./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ -./Communication/PMR/Printing/JobStatus.pb-c.obj \ -./Communication/PMR/Printing/JobTicket.pb-c.obj \ -./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ -./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ -./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ -./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ -./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ -./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ -./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ -./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ -"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ -"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ -"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ -"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ -"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ -"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ -"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ -"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ -"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ -"Communication\PMR\Printing\JobRequest.pb-c.obj" \ -"Communication\PMR\Printing\JobResponse.pb-c.obj" \ -"Communication\PMR\Printing\JobSegment.pb-c.obj" \ -"Communication\PMR\Printing\JobSpool.pb-c.obj" \ -"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ -"Communication\PMR\Printing\JobStatus.pb-c.obj" \ -"Communication\PMR\Printing\JobTicket.pb-c.obj" \ -"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ -"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ -"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ -"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ -"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ -"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ -"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ -"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ -"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ -"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ -"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ -"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ -"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ -"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ -"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ -"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ -"Communication\PMR\Printing\JobDispenser.pb-c.d" \ -"Communication\PMR\Printing\JobRequest.pb-c.d" \ -"Communication\PMR\Printing\JobResponse.pb-c.d" \ -"Communication\PMR\Printing\JobSegment.pb-c.d" \ -"Communication\PMR\Printing\JobSpool.pb-c.d" \ -"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ -"Communication\PMR\Printing\JobStatus.pb-c.d" \ -"Communication\PMR\Printing\JobTicket.pb-c.d" \ -"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ -"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ -"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ -"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ -"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ -"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ -"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ -"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ -"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ -"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ -"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ -"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ -"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ -"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ -"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ -"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ -"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ -"../Communication/PMR/Printing/JobRequest.pb-c.c" \ -"../Communication/PMR/Printing/JobResponse.pb-c.c" \ -"../Communication/PMR/Printing/JobSegment.pb-c.c" \ -"../Communication/PMR/Printing/JobSpool.pb-c.c" \ -"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ -"../Communication/PMR/Printing/JobStatus.pb-c.c" \ -"../Communication/PMR/Printing/JobTicket.pb-c.c" \ -"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ -"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ -"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ -"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ -"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ -"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ -"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ -"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/b0e7f08eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/b0e7f08eb56e001a173da96cce181ab0 deleted file mode 100644 index a1c19fe3c..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/b0e7f08eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/c05b86ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/c05b86ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/c05b86ab9071001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/d0b4c7acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/d0b4c7acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 35c800d63..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/d0b4c7acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/d17ce8398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/d17ce8398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/d17ce8398871001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/e0fe59acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/e0fe59acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index f07a9a1c6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/e0fe59acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/f144ce9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/f144ce9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ea/f144ce9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/0085329c8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/0085329c8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/0085329c8f71001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/308a4ecc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/308a4ecc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/308a4ecc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/70187bcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/70187bcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/70187bcc9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/a0ef9eb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/a0ef9eb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/a0ef9eb48771001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/d04aaf8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/d04aaf8eb56e001a173da96cce181ab0 deleted file mode 100644 index b2f93b2cc..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/d04aaf8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/IFS/ifs.c - -C_DEPS += \ -./Modules/IFS/ifs.d - -OBJS += \ -./Modules/IFS/ifs.obj - -OBJS__QUOTED += \ -"Modules\IFS\ifs.obj" - -C_DEPS__QUOTED += \ -"Modules\IFS\ifs.d" - -C_SRCS__QUOTED += \ -"../Modules/IFS/ifs.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/d0e2ffa99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/d0e2ffa99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/d0e2ffa99071001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/e091cb6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/e091cb6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/e091cb6e8771001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/f065c46e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/f065c46e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/f065c46e8771001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/119426519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/119426519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/119426519571001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/216c5e9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/216c5e9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/216c5e9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/405c37ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/405c37ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/405c37ac9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/414c9f8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/414c9f8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/414c9f8b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/a00e1918b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/a00e1918b66e001a173da96cce181ab0 deleted file mode 100644 index 43102a930..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/a00e1918b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c - -C_DEPS += \ -./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d - -OBJS += \ -./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj - -OBJS__QUOTED += \ -"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" - -C_DEPS__QUOTED += \ -"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" - -C_SRCS__QUOTED += \ -"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e024e7e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e024e7e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e024e7e39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e04a12b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e04a12b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e04a12b58771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/f0c8a1429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/f0c8a1429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/f0c8a1429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/f0fcf718b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/f0fcf718b66e001a173da96cce181ab0 deleted file mode 100644 index 0b34bf49e..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/f0fcf718b66e001a173da96cce181ab0 +++ /dev/null @@ -1,43 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/102335aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/102335aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index e842fb84f..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/102335aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,62 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Connection/ConnectRequest.pb-c.c \ -../Communication/PMR/Connection/ConnectResponse.pb-c.c \ -../Communication/PMR/Connection/DeviceInformation.pb-c.c \ -../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ -../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ -../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ -../Communication/PMR/Connection/KeepAliveResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/Connection/ConnectRequest.pb-c.d \ -./Communication/PMR/Connection/ConnectResponse.pb-c.d \ -./Communication/PMR/Connection/DeviceInformation.pb-c.d \ -./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ -./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ -./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ -./Communication/PMR/Connection/KeepAliveResponse.pb-c.d - -OBJS += \ -./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ -./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ -./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ -./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ -./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ -./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ -./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ -"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ -"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ -"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ -"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ -"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ -"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ -"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ -"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ -"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ -"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ -"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ -"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ -"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ -"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ -"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ -"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ -"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ -"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/107116adb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/107116adb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index aadf08a8c..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/107116adb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/Uart.d - -OBJS += \ -./Drivers/Uart_Comm/Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/10d9f1a99071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/10d9f1a99071001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/10d9f1a99071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/504ba6e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/504ba6e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/504ba6e39a71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/601e92b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/601e92b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/601e92b48771001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/704106cd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/704106cd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/704106cd9071001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/71ddccb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/71ddccb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/71ddccb48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/90ed6fab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/90ed6fab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/90ed6fab9071001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/a03d8a8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/a03d8a8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/a03d8a8b9571001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/b0b3fe18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/b0b3fe18b66e001a173da96cce181ab0 deleted file mode 100644 index 606e96c56..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/b0b3fe18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../StateMachines/Printing/JobSTM.c \ -../StateMachines/Printing/PrintingSTM.c - -C_DEPS += \ -./StateMachines/Printing/JobSTM.d \ -./StateMachines/Printing/PrintingSTM.d - -OBJS += \ -./StateMachines/Printing/JobSTM.obj \ -./StateMachines/Printing/PrintingSTM.obj - -OBJS__QUOTED += \ -"StateMachines\Printing\JobSTM.obj" \ -"StateMachines\Printing\PrintingSTM.obj" - -C_DEPS__QUOTED += \ -"StateMachines\Printing\JobSTM.d" \ -"StateMachines\Printing\PrintingSTM.d" - -C_SRCS__QUOTED += \ -"../StateMachines/Printing/JobSTM.c" \ -"../StateMachines/Printing/PrintingSTM.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/c06391e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/c06391e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/c06391e39a71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/d086bb8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/d086bb8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/d086bb8b9571001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/e01e378cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/e01e378cb56e001a173da96cce181ab0 deleted file mode 100644 index 55839a6f0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/e01e378cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,85 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/00998d8b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/00998d8b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/00998d8b9571001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/2079b98db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/2079b98db56e001a173da96cce181ab0 deleted file mode 100644 index eb43d31e6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/2079b98db56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/30671d8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/30671d8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/30671d8a9571001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/80591b8cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/80591b8cb56e001a173da96cce181ab0 deleted file mode 100644 index 31bc6b321..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/80591b8cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Common/ErrorCode.pb-c.c \ -../Communication/PMR/Common/ErrorResponse.pb-c.c \ -../Communication/PMR/Common/MessageContainer.pb-c.c \ -../Communication/PMR/Common/MessageType.pb-c.c - -C_DEPS += \ -./Communication/PMR/Common/ErrorCode.pb-c.d \ -./Communication/PMR/Common/ErrorResponse.pb-c.d \ -./Communication/PMR/Common/MessageContainer.pb-c.d \ -./Communication/PMR/Common/MessageType.pb-c.d - -OBJS += \ -./Communication/PMR/Common/ErrorCode.pb-c.obj \ -./Communication/PMR/Common/ErrorResponse.pb-c.obj \ -./Communication/PMR/Common/MessageContainer.pb-c.obj \ -./Communication/PMR/Common/MessageType.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Common\ErrorCode.pb-c.obj" \ -"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ -"Communication\PMR\Common\MessageContainer.pb-c.obj" \ -"Communication\PMR\Common\MessageType.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Common\ErrorCode.pb-c.d" \ -"Communication\PMR\Common\ErrorResponse.pb-c.d" \ -"Communication\PMR\Common\MessageContainer.pb-c.d" \ -"Communication\PMR\Common\MessageType.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Common/ErrorCode.pb-c.c" \ -"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ -"../Communication/PMR/Common/MessageContainer.pb-c.c" \ -"../Communication/PMR/Common/MessageType.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/a012cde78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/a012cde78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/a012cde78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/b00f1a8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/b00f1a8eb56e001a173da96cce181ab0 deleted file mode 100644 index 41d1db205..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/b00f1a8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ -../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ -./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ -./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ -"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ -"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ -"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/c07598ca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/c07598ca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/c07598ca9071001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/c165c8b38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/c165c8b38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/c165c8b38771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/d0ffab18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/d0ffab18b66e001a173da96cce181ab0 deleted file mode 100644 index aadf08a8c..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/d0ffab18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/Uart_Comm/Uart.c - -C_DEPS += \ -./Drivers/Uart_Comm/Uart.d - -OBJS += \ -./Drivers/Uart_Comm/Uart.obj - -OBJS__QUOTED += \ -"Drivers\Uart_Comm\Uart.obj" - -C_DEPS__QUOTED += \ -"Drivers\Uart_Comm\Uart.d" - -C_SRCS__QUOTED += \ -"../Drivers/Uart_Comm/Uart.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/f0f68ce39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/f0f68ce39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/f0f68ce39a71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/10b6609b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/10b6609b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/10b6609b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/2043196c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/2043196c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/2043196c8771001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/30c12118b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/30c12118b66e001a173da96cce181ab0 deleted file mode 100644 index 69342426c..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/30c12118b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/41ccd89b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/41ccd89b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/41ccd89b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/70d71b29c36e001a17dd93e105fd0cb6 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/70d71b29c36e001a17dd93e105fd0cb6 deleted file mode 100644 index d858e56d7..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/70d71b29c36e001a17dd93e105fd0cb6 +++ /dev/null @@ -1,354 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -/* ----------------------- System includes ----------------------------------*/ -#include "stdlib.h" -#include "string.h" - -/* ----------------------- Platform includes --------------------------------*/ -#include "port.h" - -/* ----------------------- Modbus includes ----------------------------------*/ -#include "mb.h" -#include "mbrtu.h" -#include "mbframe.h" - -#include "mbcrc.h" -#include "mbport.h" - -/* ----------------------- Defines ------------------------------------------*/ -#define MB_SER_PDU_SIZE_MIN 4 /*!< Minimum size of a Modbus RTU frame. */ -#define MB_SER_PDU_SIZE_MAX 256 /*!< Maximum size of a Modbus RTU frame. */ -#define MB_SER_PDU_SIZE_CRC 2 /*!< Size of CRC field in PDU. */ -#define MB_SER_PDU_ADDR_OFF 0 /*!< Offset of slave address in Ser-PDU. */ -#define MB_SER_PDU_PDU_OFF 1 /*!< Offset of Modbus-PDU in Ser-PDU. */ - -/* ----------------------- Type definitions ---------------------------------*/ -typedef enum -{ - STATE_RX_INIT, /*!< Receiver is in initial state. */ - STATE_RX_IDLE, /*!< Receiver is in idle state. */ - STATE_RX_RCV, /*!< Frame is beeing received. */ - STATE_RX_ERROR /*!< If the frame is invalid. */ -} eMBRcvState; - -typedef enum -{ - STATE_TX_IDLE, /*!< Transmitter is in idle state. */ - STATE_TX_XMIT /*!< Transmitter is in transfer state. */ -} eMBSndState; - -/* ----------------------- Static variables ---------------------------------*/ -static volatile eMBSndState eSndState; -static volatile eMBRcvState eRcvState; - -volatile UCHAR ucRTUBuf[MB_SER_PDU_SIZE_MAX]; - -static volatile UCHAR *pucSndBufferCur; -static volatile USHORT usSndBufferCount; - -static volatile USHORT usRcvBufferPos; - -/* ----------------------- Start implementation -----------------------------*/ -eMBErrorCode -eMBRTUInit( UCHAR ucSlaveAddress, UCHAR ucPort, ULONG ulBaudRate, eMBParity eParity ) -{ - eMBErrorCode eStatus = MB_ENOERR; - ULONG usTimerT35_50us; - - ( void )ucSlaveAddress; - ENTER_CRITICAL_SECTION( ); - - /* Modbus RTU uses 8 Databits. */ - if( xMBPortSerialInit( ucPort, ulBaudRate, 8, eParity ) != TRUE ) - { - eStatus = MB_EPORTERR; - } - else - { - /* If baudrate > 19200 then we should use the fixed timer values - * t35 = 1750us. Otherwise t35 must be 3.5 times the character time. - */ - if( ulBaudRate > 19200 ) - { - usTimerT35_50us = 35; /* 1800us. */ - } - else - { - /* The timer reload value for a character is given by: - * - * ChTimeValue = Ticks_per_1s / ( Baudrate / 11 ) - * = 11 * Ticks_per_1s / Baudrate - * = 220000 / Baudrate - * The reload for t3.5 is 1.5 times this value and similary - * for t3.5. - */ - usTimerT35_50us = ( 7UL * 220000UL ) / ( 2UL * ulBaudRate ); - } - if( xMBPortTimersInit( ( USHORT ) usTimerT35_50us ) != TRUE ) - { - eStatus = MB_EPORTERR; - } - } - EXIT_CRITICAL_SECTION( ); - - return eStatus; -} - -void -eMBRTUStart( void ) -{ - ENTER_CRITICAL_SECTION( ); - /* Initially the receiver is in the state STATE_RX_INIT. we start - * the timer and if no character is received within t3.5 we change - * to STATE_RX_IDLE. This makes sure that we delay startup of the - * modbus protocol stack until the bus is free. - */ - eRcvState = STATE_RX_INIT; - vMBPortSerialEnable( TRUE, FALSE ); - vMBPortTimersEnable( ); - - EXIT_CRITICAL_SECTION( ); -} - -void -eMBRTUStop( void ) -{ - ENTER_CRITICAL_SECTION( ); - vMBPortSerialEnable( FALSE, FALSE ); - vMBPortTimersDisable( ); - EXIT_CRITICAL_SECTION( ); -} - -eMBErrorCode -eMBRTUReceive( UCHAR * pucRcvAddress, UCHAR ** pucFrame, USHORT * pusLength ) -{ - BOOL xFrameReceived = FALSE; - eMBErrorCode eStatus = MB_ENOERR; - - ENTER_CRITICAL_SECTION( ); - assert( usRcvBufferPos < MB_SER_PDU_SIZE_MAX ); - - /* Length and CRC check */ - if( ( usRcvBufferPos >= MB_SER_PDU_SIZE_MIN ) - && ( usMBCRC16( ( UCHAR * ) ucRTUBuf, usRcvBufferPos ) == 0 ) ) - { - /* Save the address field. All frames are passed to the upper layed - * and the decision if a frame is used is done there. - */ - *pucRcvAddress = ucRTUBuf[MB_SER_PDU_ADDR_OFF]; - - /* Total length of Modbus-PDU is Modbus-Serial-Line-PDU minus - * size of address field and CRC checksum. - */ - *pusLength = ( USHORT )( usRcvBufferPos - MB_SER_PDU_PDU_OFF - MB_SER_PDU_SIZE_CRC ); - - /* Return the start of the Modbus PDU to the caller. */ - *pucFrame = ( UCHAR * ) & ucRTUBuf[MB_SER_PDU_PDU_OFF]; - xFrameReceived = TRUE; - } - else - { - eStatus = MB_EIO; - } - - EXIT_CRITICAL_SECTION( ); - return eStatus; -} - -eMBErrorCode -eMBRTUSend( UCHAR ucSlaveAddress, const UCHAR * pucFrame, USHORT usLength ) -{ - eMBErrorCode eStatus = MB_ENOERR; - USHORT usCRC16; - - ENTER_CRITICAL_SECTION( ); - - /* Check if the receiver is still in idle state. If not we where to - * slow with processing the received frame and the master sent another - * frame on the network. We have to abort sending the frame. - */ - if( eRcvState == STATE_RX_IDLE ) - { - /* First byte before the Modbus-PDU is the slave address. */ - pucSndBufferCur = ( UCHAR * ) pucFrame - 1; - usSndBufferCount = 1; - - /* Now copy the Modbus-PDU into the Modbus-Serial-Line-PDU. */ - pucSndBufferCur[MB_SER_PDU_ADDR_OFF] = ucSlaveAddress; - usSndBufferCount += usLength; - - /* Calculate CRC16 checksum for Modbus-Serial-Line-PDU. */ - usCRC16 = usMBCRC16( ( UCHAR * ) pucSndBufferCur, usSndBufferCount ); - ucRTUBuf[usSndBufferCount++] = ( UCHAR )( usCRC16 & 0xFF ); - ucRTUBuf[usSndBufferCount++] = ( UCHAR )( usCRC16 >> 8 ); - - /* Activate the transmitter. */ - eSndState = STATE_TX_XMIT; - vMBPortSerialEnable( FALSE, TRUE ); - } - else - { - eStatus = MB_EIO; - } - EXIT_CRITICAL_SECTION( ); - return eStatus; -} - -BOOL -xMBRTUReceiveFSM( void ) -{ - BOOL xTaskNeedSwitch = FALSE; - UCHAR ucByte; - - assert( eSndState == STATE_TX_IDLE ); - - /* Always read the character. */ - ( void )xMBPortSerialGetByte( ( CHAR * ) & ucByte ); - - switch ( eRcvState ) - { - /* If we have received a character in the init state we have to - * wait until the frame is finished. - */ - case STATE_RX_INIT: - vMBPortTimersEnable( ); - break; - - /* In the error state we wait until all characters in the - * damaged frame are transmitted. - */ - case STATE_RX_ERROR: - vMBPortTimersEnable( ); - break; - - /* In the idle state we wait for a new character. If a character - * is received the t1.5 and t3.5 timers are started and the - * receiver is in the state STATE_RX_RECEIVCE. - */ - case STATE_RX_IDLE: - usRcvBufferPos = 0; - ucRTUBuf[usRcvBufferPos++] = ucByte; - eRcvState = STATE_RX_RCV; - - /* Enable t3.5 timers. */ - vMBPortTimersEnable( ); - break; - - /* We are currently receiving a frame. Reset the timer after - * every character received. If more than the maximum possible - * number of bytes in a modbus frame is received the frame is - * ignored. - */ - case STATE_RX_RCV: - if( usRcvBufferPos < MB_SER_PDU_SIZE_MAX ) - { - ucRTUBuf[usRcvBufferPos++] = ucByte; - } - else - { - eRcvState = STATE_RX_ERROR; - } - vMBPortTimersEnable( ); - break; - } - return xTaskNeedSwitch; -} - -BOOL -xMBRTUTransmitFSM( void ) -{ - BOOL xNeedPoll = FALSE; - - assert( eRcvState == STATE_RX_IDLE ); - - switch ( eSndState ) - { - /* We should not get a transmitter event if the transmitter is in - * idle state. */ - case STATE_TX_IDLE: - /* enable receiver/disable transmitter. */ - vMBPortSerialEnable( TRUE, FALSE ); - break; - - case STATE_TX_XMIT: - /* check if we are finished. */ - if( usSndBufferCount != 0 ) - { - xMBPortSerialPutByte( ( CHAR )*pucSndBufferCur ); - pucSndBufferCur++; /* next byte in sendbuffer. */ - usSndBufferCount--; - } - else - { - xNeedPoll = xMBPortEventPost( EV_FRAME_SENT ); - /* Disable transmitter. This prevents another transmit buffer - * empty interrupt. */ - vMBPortSerialEnable( TRUE, FALSE ); - eSndState = STATE_TX_IDLE; - } - break; - } - - return xNeedPoll; -} - -BOOL -xMBRTUTimerT35Expired( void ) -{ - BOOL xNeedPoll = FALSE; - - switch ( eRcvState ) - { - /* Timer t35 expired. Startup phase is finished. */ - case STATE_RX_INIT: - xNeedPoll = xMBPortEventPost( EV_READY ); - break; - - /* A frame was received and t35 expired. Notify the listener that - * a new frame was received. */ - case STATE_RX_RCV: - xNeedPoll = xMBPortEventPost( EV_FRAME_RECEIVED ); - break; - - /* An error occured while receiving the frame. */ - case STATE_RX_ERROR: - break; - - /* Function called in an illegal state. */ - default: - assert( ( eRcvState == STATE_RX_INIT ) || - ( eRcvState == STATE_RX_RCV ) || ( eRcvState == STATE_RX_ERROR ) ); - } - - vMBPortTimersDisable( ); - eRcvState = STATE_RX_IDLE; - - return xNeedPoll; -} diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/9143163a8871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/9143163a8871001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/9143163a8871001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/a19700b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/a19700b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/a19700b58771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/c0124f18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/c0124f18b66e001a173da96cce181ab0 deleted file mode 100644 index b6e6616cd..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/c0124f18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/c0e13d509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/c0e13d509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/c0e13d509571001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/d0f5e38bb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/d0f5e38bb56e001a173da96cce181ab0 deleted file mode 100644 index ed806ae47..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/d0f5e38bb56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/f04c21aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/f04c21aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 66f3efdee..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/f04c21aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,29 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/f0ea6a8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/f0ea6a8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/f0ea6a8a9571001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/10660dac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/10660dac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/10660dac9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/10b928b58771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/10b928b58771001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/10b928b58771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/10ebd2429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/10ebd2429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/10ebd2429b71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/20d0f5a9b06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/20d0f5a9b06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 7aa0e8205..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/20d0f5a9b06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,58 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -CFG_SRCS += \ -../Embedded.cfg - -CMD_SRCS += \ -../tm4c129xnczad.cmd - -C_SRCS += \ -../Main.c \ -../delay.c - -GEN_CMDS += \ -./configPkg/linker.cmd - -GEN_FILES += \ -./configPkg/linker.cmd \ -./configPkg/compiler.opt - -GEN_MISC_DIRS += \ -./configPkg/ - -C_DEPS += \ -./Main.d \ -./delay.d - -GEN_OPTS += \ -./configPkg/compiler.opt - -OBJS += \ -./Main.obj \ -./delay.obj - -GEN_MISC_DIRS__QUOTED += \ -"configPkg\" - -OBJS__QUOTED += \ -"Main.obj" \ -"delay.obj" - -C_DEPS__QUOTED += \ -"Main.d" \ -"delay.d" - -GEN_FILES__QUOTED += \ -"configPkg\linker.cmd" \ -"configPkg\compiler.opt" - -C_SRCS__QUOTED += \ -"../Main.c" \ -"../delay.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/50122b429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/50122b429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/50122b429b71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/503d4418b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/503d4418b66e001a173da96cce181ab0 deleted file mode 100644 index e7680d0ef..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/503d4418b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/7005d94f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/7005d94f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/7005d94f9571001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/7008279b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/7008279b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/7008279b8f71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/90ee8ecc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/90ee8ecc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/90ee8ecc9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/b03a0f9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/b03a0f9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/b03a0f9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/b0cd5318b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/b0cd5318b66e001a173da96cce181ab0 deleted file mode 100644 index c0c254965..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/b0cd5318b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c - -C_DEPS += \ -./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d - -OBJS += \ -./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/c0781faa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/c0781faa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/c0781faa9071001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/e0d3c1e19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/e0d3c1e19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/e0d3c1e19a71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/00836d8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/00836d8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/00836d8a9571001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/109426519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/109426519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/109426519571001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/201986e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/201986e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/201986e39a71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/4011ad18b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/4011ad18b66e001a173da96cce181ab0 deleted file mode 100644 index c49132708..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/4011ad18b66e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/c02b3fcd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/c02b3fcd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/c02b3fcd9071001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/c07d1e519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/c07d1e519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/c07d1e519571001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/0000bd398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/0000bd398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/0000bd398871001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/0089ebb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/0089ebb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/0089ebb48771001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/00b7f0509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/00b7f0509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/00b7f0509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/00dbaacc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/00dbaacc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/00dbaacc9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/10f845509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/10f845509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/10f845509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/205360429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/205360429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/205360429b71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/20eb63e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/20eb63e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/20eb63e39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/7066b44f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/7066b44f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/7066b44f9571001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/7070a36e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/7070a36e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/7070a36e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/7074bfcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/7074bfcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/7074bfcc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/900c8acc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/900c8acc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/900c8acc9071001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/a04622398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/a04622398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/a04622398871001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/d03a17aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/d03a17aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 3bfcbecc4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/d03a17aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/Utilities/RFIDTagHandling.c \ -../Common/Utilities/Update.c \ -../Common/Utilities/Utils.c \ -../Common/Utilities/idle_task.c \ -../Common/Utilities/ustdlib.c - -C_DEPS += \ -./Common/Utilities/RFIDTagHandling.d \ -./Common/Utilities/Update.d \ -./Common/Utilities/Utils.d \ -./Common/Utilities/idle_task.d \ -./Common/Utilities/ustdlib.d - -OBJS += \ -./Common/Utilities/RFIDTagHandling.obj \ -./Common/Utilities/Update.obj \ -./Common/Utilities/Utils.obj \ -./Common/Utilities/idle_task.obj \ -./Common/Utilities/ustdlib.obj - -OBJS__QUOTED += \ -"Common\Utilities\RFIDTagHandling.obj" \ -"Common\Utilities\Update.obj" \ -"Common\Utilities\Utils.obj" \ -"Common\Utilities\idle_task.obj" \ -"Common\Utilities\ustdlib.obj" - -C_DEPS__QUOTED += \ -"Common\Utilities\RFIDTagHandling.d" \ -"Common\Utilities\Update.d" \ -"Common\Utilities\Utils.d" \ -"Common\Utilities\idle_task.d" \ -"Common\Utilities\ustdlib.d" - -C_SRCS__QUOTED += \ -"../Common/Utilities/RFIDTagHandling.c" \ -"../Common/Utilities/Update.c" \ -"../Common/Utilities/Utils.c" \ -"../Common/Utilities/idle_task.c" \ -"../Common/Utilities/ustdlib.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/20b9dcab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/20b9dcab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/20b9dcab9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/2148698b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/2148698b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/2148698b9571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/607d958a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/607d958a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/607d958a9571001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/60fae4398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/60fae4398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/60fae4398871001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/70518e8a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/70518e8a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/70518e8a9571001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/a1a364509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/a1a364509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/a1a364509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/b0c939cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/b0c939cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/b0c939cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/c0c4f46e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/c0c4f46e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/c0c4f46e8771001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/d05e894f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/d05e894f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/d05e894f9571001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/e1a6896e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/e1a6896e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f2/e1a6896e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/00299de78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/00299de78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/00299de78f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/600ab29b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/600ab29b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/600ab29b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/603ab6998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/603ab6998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/603ab6998f71001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/80c7c7429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/80c7c7429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/80c7c7429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/0080138eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/0080138eb56e001a173da96cce181ab0 deleted file mode 100644 index 0a0915c73..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/0080138eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/304d2f419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/304d2f419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/304d2f419b71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/50812b6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/50812b6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/50812b6e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/50f5ba998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/50f5ba998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/50f5ba998f71001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/9034f6ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/9034f6ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/9034f6ab9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/903d72e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/903d72e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/903d72e68f71001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/a09346ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/a09346ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/a09346ab9071001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/a0bf8e8db56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/a0bf8e8db56e001a173da96cce181ab0 deleted file mode 100644 index 2599fb3d4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/a0bf8e8db56e001a173da96cce181ab0 +++ /dev/null @@ -1,722 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/b0cb8ee39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/b0cb8ee39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/b0cb8ee39a71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/d0f6136d8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/d0f6136d8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/d0f6136d8771001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/e06c5ccc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/e06c5ccc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/e06c5ccc9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/f149ab6c8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/f149ab6c8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/f149ab6c8771001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/001ba88a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/001ba88a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/001ba88a9571001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/3039e5aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/3039e5aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 0d046f6d7..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/3039e5aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,155 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/404e20cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/404e20cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/404e20cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/707052429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/707052429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/707052429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/80b1c5b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/80b1c5b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/80b1c5b48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/81ef416e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/81ef416e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/81ef416e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/90a18316b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/90a18316b66e001a173da96cce181ab0 deleted file mode 100644 index 3bfcbecc4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/90a18316b66e001a173da96cce181ab0 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Common/Utilities/RFIDTagHandling.c \ -../Common/Utilities/Update.c \ -../Common/Utilities/Utils.c \ -../Common/Utilities/idle_task.c \ -../Common/Utilities/ustdlib.c - -C_DEPS += \ -./Common/Utilities/RFIDTagHandling.d \ -./Common/Utilities/Update.d \ -./Common/Utilities/Utils.d \ -./Common/Utilities/idle_task.d \ -./Common/Utilities/ustdlib.d - -OBJS += \ -./Common/Utilities/RFIDTagHandling.obj \ -./Common/Utilities/Update.obj \ -./Common/Utilities/Utils.obj \ -./Common/Utilities/idle_task.obj \ -./Common/Utilities/ustdlib.obj - -OBJS__QUOTED += \ -"Common\Utilities\RFIDTagHandling.obj" \ -"Common\Utilities\Update.obj" \ -"Common\Utilities\Utils.obj" \ -"Common\Utilities\idle_task.obj" \ -"Common\Utilities\ustdlib.obj" - -C_DEPS__QUOTED += \ -"Common\Utilities\RFIDTagHandling.d" \ -"Common\Utilities\Update.d" \ -"Common\Utilities\Utils.d" \ -"Common\Utilities\idle_task.d" \ -"Common\Utilities\ustdlib.d" - -C_SRCS__QUOTED += \ -"../Common/Utilities/RFIDTagHandling.c" \ -"../Common/Utilities/Update.c" \ -"../Common/Utilities/Utils.c" \ -"../Common/Utilities/idle_task.c" \ -"../Common/Utilities/ustdlib.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/c047ba9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/c047ba9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/c047ba9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/c0fe0dcc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/c0fe0dcc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f5/c0fe0dcc9071001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/4017fb509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/4017fb509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/4017fb509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/40d1c9398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/40d1c9398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/40d1c9398871001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/6095ff4e9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/6095ff4e9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/6095ff4e9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/6098ee16b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/6098ee16b66e001a173da96cce181ab0 deleted file mode 100644 index b27c5e3b8..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/6098ee16b66e001a173da96cce181ab0 +++ /dev/null @@ -1,62 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ -../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ -../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ -../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ -../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ -../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ -../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c - -C_DEPS += \ -./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ -./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ -./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ -./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ -./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ -./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ -./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d - -OBJS += \ -./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ -./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ -./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ -./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ -./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ -./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ -./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ -"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ -"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ -"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ -"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ -"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ -"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ -"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ -"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ -"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ -"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ -"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ -"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ -"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ -"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ -"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ -"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ -"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ -"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/80f0ec9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/80f0ec9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/80f0ec9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/b1dcde509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/b1dcde509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/b1dcde509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/f135978b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/f135978b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/f135978b9571001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/2048698b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/2048698b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/2048698b9571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/40edce6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/40edce6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/40edce6e8771001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/618a788b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/618a788b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/618a788b9571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/803bee6b8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/803bee6b8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/803bee6b8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/8040288eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/8040288eb56e001a173da96cce181ab0 deleted file mode 100644 index 3a03cd26b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/8040288eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/a04288419b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/a04288419b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/a04288419b71001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/a0755fb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/a0755fb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/a0755fb48771001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/b0882018b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/b0882018b66e001a173da96cce181ab0 deleted file mode 100644 index 522384cb6..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/b0882018b66e001a173da96cce181ab0 +++ /dev/null @@ -1,26 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/FPGA/Motors_Driver/L6470.c - -C_DEPS += \ -./Drivers/FPGA/Motors_Driver/L6470.d - -OBJS += \ -./Drivers/FPGA/Motors_Driver/L6470.obj - -OBJS__QUOTED += \ -"Drivers\FPGA\Motors_Driver\L6470.obj" - -C_DEPS__QUOTED += \ -"Drivers\FPGA\Motors_Driver\L6470.d" - -C_SRCS__QUOTED += \ -"../Drivers/FPGA/Motors_Driver/L6470.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/d0d7e0ab9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/d0d7e0ab9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/d0d7e0ab9071001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/20e9986e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/20e9986e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/20e9986e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/5000348eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/5000348eb56e001a173da96cce181ab0 deleted file mode 100644 index 1c8fe48c2..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/5000348eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ -../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c - -C_DEPS += \ -./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ -./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d - -OBJS += \ -./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ -./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ -"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ -"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ -"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/6019efa9b06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/6019efa9b06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 11498ef05..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/6019efa9b06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,207 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -C55_SRCS := -A_SRCS := -CFG_UPPER_SRCS := -CFG_SRCS := -ASM_UPPER_SRCS := -EXE_SRCS := -LDS_UPPER_SRCS := -CPP_SRCS := -CMD_SRCS := -O_SRCS := -ELF_SRCS := -C??_SRCS := -C64_SRCS := -C67_SRCS := -SA_SRCS := -S64_SRCS := -OPT_SRCS := -CXX_SRCS := -S67_SRCS := -S??_SRCS := -PDE_SRCS := -SV7A_SRCS := -K_SRCS := -CLA_SRCS := -S55_SRCS := -LD_UPPER_SRCS := -OUT_SRCS := -INO_SRCS := -LIB_SRCS := -ASM_SRCS := -S_UPPER_SRCS := -S43_SRCS := -LD_SRCS := -CMD_UPPER_SRCS := -C_UPPER_SRCS := -C++_SRCS := -C43_SRCS := -OBJ_SRCS := -LDS_SRCS := -S_SRCS := -CC_SRCS := -S62_SRCS := -C62_SRCS := -C_SRCS := -C55_DEPS := -C_UPPER_DEPS := -S67_DEPS := -S62_DEPS := -S_DEPS := -OPT_DEPS := -C??_DEPS := -ASM_UPPER_DEPS := -S??_DEPS := -C64_DEPS := -CXX_DEPS := -S64_DEPS := -INO_DEPS := -GEN_CMDS := -GEN_FILES := -CLA_DEPS := -S55_DEPS := -SV7A_DEPS := -EXE_OUTPUTS := -C62_DEPS := -C67_DEPS := -PDE_DEPS := -GEN_MISC_DIRS := -K_DEPS := -C_DEPS := -CC_DEPS := -BIN_OUTPUTS := -GEN_OPTS := -C++_DEPS := -C43_DEPS := -S43_DEPS := -OBJS := -ASM_DEPS := -GEN_MISC_FILES := -S_UPPER_DEPS := -CPP_DEPS := -SA_DEPS := -C++_DEPS__QUOTED := -OPT_DEPS__QUOTED := -S_UPPER_DEPS__QUOTED := -SA_DEPS__QUOTED := -C??_DEPS__QUOTED := -S67_DEPS__QUOTED := -GEN_MISC_DIRS__QUOTED := -C55_DEPS__QUOTED := -CC_DEPS__QUOTED := -ASM_UPPER_DEPS__QUOTED := -SV7A_DEPS__QUOTED := -S??_DEPS__QUOTED := -OBJS__QUOTED := -C67_DEPS__QUOTED := -K_DEPS__QUOTED := -S55_DEPS__QUOTED := -GEN_CMDS__QUOTED := -GEN_MISC_FILES__QUOTED := -INO_DEPS__QUOTED := -C62_DEPS__QUOTED := -C_DEPS__QUOTED := -C_UPPER_DEPS__QUOTED := -C43_DEPS__QUOTED := -CPP_DEPS__QUOTED := -BIN_OUTPUTS__QUOTED := -GEN_FILES__QUOTED := -C64_DEPS__QUOTED := -CXX_DEPS__QUOTED := -CLA_DEPS__QUOTED := -S_DEPS__QUOTED := -ASM_DEPS__QUOTED := -S43_DEPS__QUOTED := -EXE_OUTPUTS__QUOTED := -S64_DEPS__QUOTED := -S62_DEPS__QUOTED := -PDE_DEPS__QUOTED := -GEN_OPTS__QUOTED := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -. \ -Common/SWUpdate \ -Common/SW_Info \ -Common/Software_CRC \ -Common/Sys_PinOut_Config \ -Common/Utilities \ -Common/protobuf-c \ -Common/report \ -Communication \ -Communication/PMR/Common \ -Communication/PMR/Connection \ -Communication/PMR/Debugging \ -Communication/PMR/Diagnostics \ -Communication/PMR/EmbeddedParameters \ -Communication/PMR/FirmwareUpgrade \ -Communication/PMR/Hardware \ -Communication/PMR/IO \ -Communication/PMR/MachineStatus \ -Communication/PMR/Power \ -Communication/PMR/Printing \ -Communication/PMR/Stubs \ -Communication/PMR/ThreadLoading \ -Drivers/ADC_Sampling \ -Drivers/FPGA \ -Drivers/FPGA/FPGA_GPIO \ -Drivers/FPGA/FPGA_INTERRUPTS \ -Drivers/FPGA/Full_Vme \ -Drivers/FPGA/Full_Vme/ispvme \ -Drivers/FPGA/Motors_Driver \ -Drivers/Flash_Memory/FATFS \ -Drivers/Flash_Memory \ -Drivers/Heater \ -Drivers/I2C_Communication/ADC_MUX \ -Drivers/I2C_Communication/DAC \ -Drivers/I2C_Communication/Dispenser_Card/EEPROM \ -Drivers/I2C_Communication/Dispenser_Card \ -Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ -Drivers/I2C_Communication/Head_Card/ADC \ -Drivers/I2C_Communication/Head_Card/EEPROM \ -Drivers/I2C_Communication/Head_Card/Fan \ -Drivers/I2C_Communication/Head_Card \ -Drivers/I2C_Communication/Head_Card/IO_Ports \ -Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ -Drivers/I2C_Communication/Head_Card/PT100 \ -Drivers/I2C_Communication \ -Drivers/I2C_Communication/Main_Board_EEPROM \ -Drivers/I2C_Communication/RFID_NFC \ -Drivers/I2C_Communication/RFID_NFC/logi-tag \ -Drivers/I2C_Communication/Thermo_K \ -Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ -Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ -Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ -Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ -Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ -Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ -Drivers/I2C_Communication/WHS_Card/EEPROM \ -Drivers/I2C_Communication/WHS_Card \ -Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ -Drivers/Motors \ -Drivers/On_Chip_Flash \ -Drivers/SPI \ -Drivers/SSI_Comm/Dancer \ -Drivers/SSI_Comm \ -Drivers/SSI_Comm/Speed_Sensor \ -Drivers/USB_Communication \ -Drivers/Uart_Comm \ -Drivers/Uart_Comm/WHS_UART \ -Drivers/Valves \ -Drivers/flash_ram \ -Modules/AlarmHandling \ -Modules/Control \ -Modules/Diagnostics \ -Modules/General \ -Modules/Heaters \ -Modules/IDS \ -Modules/IFS \ -Modules/Stubs_Handler \ -Modules/Thread \ -Modules/Waste \ -StateMachines/Initialization \ -StateMachines/Printing \ - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/60b1686e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/60b1686e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/60b1686e8771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/7086c8ca9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/7086c8ca9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/7086c8ca9071001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/70adf3e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/70adf3e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/70adf3e78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/9159226e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/9159226e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/9159226e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/a0d70e4f9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/a0d70e4f9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/a0d70e4f9571001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/c04c80e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/c04c80e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/c04c80e39a71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/d0b444429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/d0b444429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/d0b444429b71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/e09184ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/e09184ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/e09184ac9071001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/309824e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/309824e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/309824e39a71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/60a60a8eb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/60a60a8eb56e001a173da96cce181ab0 deleted file mode 100644 index fb81967b2..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/60a60a8eb56e001a173da96cce181ab0 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/RFID_NFC/NFC.c \ -../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c - -C_DEPS += \ -./Drivers/I2C_Communication/RFID_NFC/NFC.d \ -./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d - -OBJS += \ -./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ -./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ -"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ -"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ -"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/7029cd509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/7029cd509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/7029cd509571001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/706fb9e19a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/706fb9e19a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/706fb9e19a71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/714ecfb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/714ecfb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/714ecfb48771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/907fb1aa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/907fb1aa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/907fb1aa9071001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/90ae7c6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/90ae7c6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/90ae7c6e8771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/b126418b9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/b126418b9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/b126418b9571001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/e0f09c9a8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/e0f09c9a8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/e0f09c9a8f71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/20fe06519571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/20fe06519571001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/20fe06519571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/3071358cb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/3071358cb56e001a173da96cce181ab0 deleted file mode 100644 index 50c4bbea0..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/3071358cb56e001a173da96cce181ab0 +++ /dev/null @@ -1,86 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ -../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ -../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ -../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ -../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ -../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ -../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ -../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ -../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ -../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ -../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c - -C_DEPS += \ -./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ -./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ -./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ -./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ -./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ -./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ -./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ -./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ -./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ -./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ -./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d - -OBJS += \ -./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ -./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ -./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ -./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ -./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ -./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ -./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ -./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ -./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ -./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ -./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj - -OBJS__QUOTED += \ -"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ -"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ -"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ -"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ -"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ -"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ -"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ -"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ -"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ -"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ -"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" - -C_DEPS__QUOTED += \ -"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ -"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ -"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ -"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ -"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ -"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ -"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ -"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ -"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ -"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ -"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" - -C_SRCS__QUOTED += \ -"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ -"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ -"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ -"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ -"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ -"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ -"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ -"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ -"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ -"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ -"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/607be3e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/607be3e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/607be3e39a71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/6099dee39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/6099dee39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/6099dee39a71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/609a18aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/609a18aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index f0d60cd57..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/609a18aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,43 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/804965acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/804965acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 982770da7..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/804965acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/b06f1b9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/b06f1b9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/b06f1b9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/e0e6c8398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/e0e6c8398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/e0e6c8398871001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/2050e3cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/2050e3cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/2050e3cc9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/20e4f9e68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/20e4f9e68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/20e4f9e68f71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/30d5dc998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/30d5dc998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/30d5dc998f71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/00778e16b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/00778e16b66e001a173da96cce181ab0 deleted file mode 100644 index 460474bb5..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/00778e16b66e001a173da96cce181ab0 +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Communication/CommunicationTask.c \ -../Communication/Connection.c \ -../Communication/Container.c - -C_DEPS += \ -./Communication/CommunicationTask.d \ -./Communication/Connection.d \ -./Communication/Container.d - -OBJS += \ -./Communication/CommunicationTask.obj \ -./Communication/Connection.obj \ -./Communication/Container.obj - -OBJS__QUOTED += \ -"Communication\CommunicationTask.obj" \ -"Communication\Connection.obj" \ -"Communication\Container.obj" - -C_DEPS__QUOTED += \ -"Communication\CommunicationTask.d" \ -"Communication\Connection.d" \ -"Communication\Container.d" - -C_SRCS__QUOTED += \ -"../Communication/CommunicationTask.c" \ -"../Communication/Connection.c" \ -"../Communication/Container.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/200619cd9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/200619cd9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/200619cd9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/3046df998f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/3046df998f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/3046df998f71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/30516697c16e001a17dd93e105fd0cb6 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/30516697c16e001a17dd93e105fd0cb6 deleted file mode 100644 index 1c09e77f5..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/30516697c16e001a17dd93e105fd0cb6 +++ /dev/null @@ -1,416 +0,0 @@ -/* - * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. - * Copyright (c) 2006-2018 Christian Walter - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - */ - -#ifndef _MB_H -#define _MB_H - -#include "port.h" - -#ifdef __cplusplus -PR_BEGIN_EXTERN_C -#endif - -#include "mbport.h" -#include "mbproto.h" - -/*! \defgroup modbus Modbus - * \code #include "mb.h" \endcode - * - * This module defines the interface for the application. It contains - * the basic functions and types required to use the Modbus protocol stack. - * A typical application will want to call eMBInit() first. If the device - * is ready to answer network requests it must then call eMBEnable() to activate - * the protocol stack. In the main loop the function eMBPoll() must be called - * periodically. The time interval between pooling depends on the configured - * Modbus timeout. If an RTOS is available a separate task should be created - * and the task should always call the function eMBPoll(). - * - * \code - * // Initialize protocol stack in RTU mode for a slave with address 10 = 0x0A - * eMBInit( MB_RTU, 0x0A, 38400, MB_PAR_EVEN ); - * // Enable the Modbus Protocol Stack. - * eMBEnable( ); - * for( ;; ) - * { - * // Call the main polling loop of the Modbus protocol stack. - * eMBPoll( ); - * ... - * } - * \endcode - */ - -/* ----------------------- Defines ------------------------------------------*/ - -/*! \ingroup modbus - * \brief Use the default Modbus TCP port (502) - */ -#define MB_TCP_PORT_USE_DEFAULT 0 - -/* ----------------------- Type definitions ---------------------------------*/ - -/*! \ingroup modbus - * \brief Modbus serial transmission modes (RTU/ASCII). - * - * Modbus serial supports two transmission modes. Either ASCII or RTU. RTU - * is faster but has more hardware requirements and requires a network with - * a low jitter. ASCII is slower and more reliable on slower links (E.g. modems) - */ - typedef enum -{ - MB_RTU, /*!< RTU transmission mode. */ - MB_ASCII, /*!< ASCII transmission mode. */ - MB_TCP /*!< TCP mode. */ -} eMBMode; - -/*! \ingroup modbus - * \brief If register should be written or read. - * - * This value is passed to the callback functions which support either - * reading or writing register values. Writing means that the application - * registers should be updated and reading means that the modbus protocol - * stack needs to know the current register values. - * - * \see eMBRegHoldingCB( ), eMBRegCoilsCB( ), eMBRegDiscreteCB( ) and - * eMBRegInputCB( ). - */ -typedef enum -{ - MB_REG_READ, /*!< Read register values and pass to protocol stack. */ - MB_REG_WRITE /*!< Update register values. */ -} eMBRegisterMode; - -/*! \ingroup modbus - * \brief Errorcodes used by all function in the protocol stack. - */ -typedef enum -{ - MB_ENOERR, /*!< no error. */ - MB_ENOREG, /*!< illegal register address. */ - MB_EINVAL, /*!< illegal argument. */ - MB_EPORTERR, /*!< porting layer error. */ - MB_ENORES, /*!< insufficient resources. */ - MB_EIO, /*!< I/O error. */ - MB_EILLSTATE, /*!< protocol stack in illegal state. */ - MB_ETIMEDOUT /*!< timeout error occurred. */ -} eMBErrorCode; - - -/* ----------------------- Function prototypes ------------------------------*/ -/*! \ingroup modbus - * \brief Initialize the Modbus protocol stack. - * - * This functions initializes the ASCII or RTU module and calls the - * init functions of the porting layer to prepare the hardware. Please - * note that the receiver is still disabled and no Modbus frames are - * processed until eMBEnable( ) has been called. - * - * \param eMode If ASCII or RTU mode should be used. - * \param ucSlaveAddress The slave address. Only frames sent to this - * address or to the broadcast address are processed. - * \param ucPort The port to use. E.g. 1 for COM1 on windows. This value - * is platform dependent and some ports simply choose to ignore it. - * \param ulBaudRate The baudrate. E.g. 19200. Supported baudrates depend - * on the porting layer. - * \param eParity Parity used for serial transmission. - * - * \return If no error occurs the function returns eMBErrorCode::MB_ENOERR. - * The protocol is then in the disabled state and ready for activation - * by calling eMBEnable( ). Otherwise one of the following error codes - * is returned: - * - eMBErrorCode::MB_EINVAL If the slave address was not valid. Valid - * slave addresses are in the range 1 - 247. - * - eMBErrorCode::MB_EPORTERR IF the porting layer returned an error. - */ -eMBErrorCode eMBInit( eMBMode eMode, UCHAR ucSlaveAddress, - UCHAR ucPort, ULONG ulBaudRate, eMBParity eParity ); - -/*! \ingroup modbus - * \brief Initialize the Modbus protocol stack for Modbus TCP. - * - * This function initializes the Modbus TCP Module. Please note that - * frame processing is still disabled until eMBEnable( ) is called. - * - * \param usTCPPort The TCP port to listen on. - * \return If the protocol stack has been initialized correctly the function - * returns eMBErrorCode::MB_ENOERR. Otherwise one of the following error - * codes is returned: - * - eMBErrorCode::MB_EINVAL If the slave address was not valid. Valid - * slave addresses are in the range 1 - 247. - * - eMBErrorCode::MB_EPORTERR IF the porting layer returned an error. - */ -eMBErrorCode eMBTCPInit( USHORT usTCPPort ); - -/*! \ingroup modbus - * \brief Release resources used by the protocol stack. - * - * This function disables the Modbus protocol stack and release all - * hardware resources. It must only be called when the protocol stack - * is disabled. - * - * \note Note all ports implement this function. A port which wants to - * get an callback must define the macro MB_PORT_HAS_CLOSE to 1. - * - * \return If the resources where released it return eMBErrorCode::MB_ENOERR. - * If the protocol stack is not in the disabled state it returns - * eMBErrorCode::MB_EILLSTATE. - */ -eMBErrorCode eMBClose( void ); - -/*! \ingroup modbus - * \brief Enable the Modbus protocol stack. - * - * This function enables processing of Modbus frames. Enabling the protocol - * stack is only possible if it is in the disabled state. - * - * \return If the protocol stack is now in the state enabled it returns - * eMBErrorCode::MB_ENOERR. If it was not in the disabled state it - * return eMBErrorCode::MB_EILLSTATE. - */ -eMBErrorCode eMBEnable( void ); - -/*! \ingroup modbus - * \brief Disable the Modbus protocol stack. - * - * This function disables processing of Modbus frames. - * - * \return If the protocol stack has been disabled it returns - * eMBErrorCode::MB_ENOERR. If it was not in the enabled state it returns - * eMBErrorCode::MB_EILLSTATE. - */ -eMBErrorCode eMBDisable( void ); - -/*! \ingroup modbus - * \brief The main pooling loop of the Modbus protocol stack. - * - * This function must be called periodically. The timer interval required - * is given by the application dependent Modbus slave timeout. Internally the - * function calls xMBPortEventGet() and waits for an event from the receiver or - * transmitter state machines. - * - * \return If the protocol stack is not in the enabled state the function - * returns eMBErrorCode::MB_EILLSTATE. Otherwise it returns - * eMBErrorCode::MB_ENOERR. - */ -eMBErrorCode eMBPoll( void ); - -/*! \ingroup modbus - * \brief Configure the slave id of the device. - * - * This function should be called when the Modbus function Report Slave ID - * is enabled ( By defining MB_FUNC_OTHER_REP_SLAVEID_ENABLED in mbconfig.h ). - * - * \param ucSlaveID Values is returned in the Slave ID byte of the - * Report Slave ID response. - * \param xIsRunning If TRUE the Run Indicator Status byte is set to 0xFF. - * otherwise the Run Indicator Status is 0x00. - * \param pucAdditional Values which should be returned in the Additional - * bytes of the Report Slave ID response. - * \param usAdditionalLen Length of the buffer pucAdditonal. - * - * \return If the static buffer defined by MB_FUNC_OTHER_REP_SLAVEID_BUF in - * mbconfig.h is to small it returns eMBErrorCode::MB_ENORES. Otherwise - * it returns eMBErrorCode::MB_ENOERR. - */ -eMBErrorCode eMBSetSlaveID( UCHAR ucSlaveID, BOOL xIsRunning, - UCHAR const *pucAdditional, - USHORT usAdditionalLen ); - -/*! \ingroup modbus - * \brief Registers a callback handler for a given function code. - * - * This function registers a new callback handler for a given function code. - * The callback handler supplied is responsible for interpreting the Modbus PDU and - * the creation of an appropriate response. In case of an error it should return - * one of the possible Modbus exceptions which results in a Modbus exception frame - * sent by the protocol stack. - * - * \param ucFunctionCode The Modbus function code for which this handler should - * be registers. Valid function codes are in the range 1 to 127. - * \param pxHandler The function handler which should be called in case - * such a frame is received. If \c NULL a previously registered function handler - * for this function code is removed. - * - * \return eMBErrorCode::MB_ENOERR if the handler has been installed. If no - * more resources are available it returns eMBErrorCode::MB_ENORES. In this - * case the values in mbconfig.h should be adjusted. If the argument was not - * valid it returns eMBErrorCode::MB_EINVAL. - */ -eMBErrorCode eMBRegisterCB( UCHAR ucFunctionCode, - pxMBFunctionHandler pxHandler ); - -/* ----------------------- Callback -----------------------------------------*/ - -/*! \defgroup modbus_registers Modbus Registers - * \code #include "mb.h" \endcode - * The protocol stack does not internally allocate any memory for the - * registers. This makes the protocol stack very small and also usable on - * low end targets. In addition the values don't have to be in the memory - * and could for example be stored in a flash.
- * Whenever the protocol stack requires a value it calls one of the callback - * function with the register address and the number of registers to read - * as an argument. The application should then read the actual register values - * (for example the ADC voltage) and should store the result in the supplied - * buffer.
- * If the protocol stack wants to update a register value because a write - * register function was received a buffer with the new register values is - * passed to the callback function. The function should then use these values - * to update the application register values. - */ - -/*! \ingroup modbus_registers - * \brief Callback function used if the value of a Input Register - * is required by the protocol stack. The starting register address is given - * by \c usAddress and the last register is given by usAddress + - * usNRegs - 1. - * - * \param pucRegBuffer A buffer where the callback function should write - * the current value of the modbus registers to. - * \param usAddress The starting address of the register. Input registers - * are in the range 1 - 65535. - * \param usNRegs Number of registers the callback function must supply. - * - * \return The function must return one of the following error codes: - * - eMBErrorCode::MB_ENOERR If no error occurred. In this case a normal - * Modbus response is sent. - * - eMBErrorCode::MB_ENOREG If the application can not supply values - * for registers within this range. In this case a - * ILLEGAL DATA ADDRESS exception frame is sent as a response. - * - eMBErrorCode::MB_ETIMEDOUT If the requested register block is - * currently not available and the application dependent response - * timeout would be violated. In this case a SLAVE DEVICE BUSY - * exception is sent as a response. - * - eMBErrorCode::MB_EIO If an unrecoverable error occurred. In this case - * a SLAVE DEVICE FAILURE exception is sent as a response. - */ -eMBErrorCode eMBRegInputCB( UCHAR * pucRegBuffer, USHORT usAddress, - USHORT usNRegs ); - -/*! \ingroup modbus_registers - * \brief Callback function used if a Holding Register value is - * read or written by the protocol stack. The starting register address - * is given by \c usAddress and the last register is given by - * usAddress + usNRegs - 1. - * - * \param pucRegBuffer If the application registers values should be updated the - * buffer points to the new registers values. If the protocol stack needs - * to now the current values the callback function should write them into - * this buffer. - * \param usAddress The starting address of the register. - * \param usNRegs Number of registers to read or write. - * \param eMode If eMBRegisterMode::MB_REG_WRITE the application register - * values should be updated from the values in the buffer. For example - * this would be the case when the Modbus master has issued an - * WRITE SINGLE REGISTER command. - * If the value eMBRegisterMode::MB_REG_READ the application should copy - * the current values into the buffer \c pucRegBuffer. - * - * \return The function must return one of the following error codes: - * - eMBErrorCode::MB_ENOERR If no error occurred. In this case a normal - * Modbus response is sent. - * - eMBErrorCode::MB_ENOREG If the application can not supply values - * for registers within this range. In this case a - * ILLEGAL DATA ADDRESS exception frame is sent as a response. - * - eMBErrorCode::MB_ETIMEDOUT If the requested register block is - * currently not available and the application dependent response - * timeout would be violated. In this case a SLAVE DEVICE BUSY - * exception is sent as a response. - * - eMBErrorCode::MB_EIO If an unrecoverable error occurred. In this case - * a SLAVE DEVICE FAILURE exception is sent as a response. - */ -eMBErrorCode eMBRegHoldingCB( UCHAR * pucRegBuffer, USHORT usAddress, - USHORT usNRegs, eMBRegisterMode eMode ); - -/*! \ingroup modbus_registers - * \brief Callback function used if a Coil Register value is - * read or written by the protocol stack. If you are going to use - * this function you might use the functions xMBUtilSetBits( ) and - * xMBUtilGetBits( ) for working with bitfields. - * - * \param pucRegBuffer The bits are packed in bytes where the first coil - * starting at address \c usAddress is stored in the LSB of the - * first byte in the buffer pucRegBuffer. - * If the buffer should be written by the callback function unused - * coil values (I.e. if not a multiple of eight coils is used) should be set - * to zero. - * \param usAddress The first coil number. - * \param usNCoils Number of coil values requested. - * \param eMode If eMBRegisterMode::MB_REG_WRITE the application values should - * be updated from the values supplied in the buffer \c pucRegBuffer. - * If eMBRegisterMode::MB_REG_READ the application should store the current - * values in the buffer \c pucRegBuffer. - * - * \return The function must return one of the following error codes: - * - eMBErrorCode::MB_ENOERR If no error occurred. In this case a normal - * Modbus response is sent. - * - eMBErrorCode::MB_ENOREG If the application does not map an coils - * within the requested address range. In this case a - * ILLEGAL DATA ADDRESS is sent as a response. - * - eMBErrorCode::MB_ETIMEDOUT If the requested register block is - * currently not available and the application dependent response - * timeout would be violated. In this case a SLAVE DEVICE BUSY - * exception is sent as a response. - * - eMBErrorCode::MB_EIO If an unrecoverable error occurred. In this case - * a SLAVE DEVICE FAILURE exception is sent as a response. - */ -eMBErrorCode eMBRegCoilsCB( UCHAR * pucRegBuffer, USHORT usAddress, - USHORT usNCoils, eMBRegisterMode eMode ); - -/*! \ingroup modbus_registers - * \brief Callback function used if a Input Discrete Register value is - * read by the protocol stack. - * - * If you are going to use his function you might use the functions - * xMBUtilSetBits( ) and xMBUtilGetBits( ) for working with bitfields. - * - * \param pucRegBuffer The buffer should be updated with the current - * coil values. The first discrete input starting at \c usAddress must be - * stored at the LSB of the first byte in the buffer. If the requested number - * is not a multiple of eight the remaining bits should be set to zero. - * \param usAddress The starting address of the first discrete input. - * \param usNDiscrete Number of discrete input values. - * \return The function must return one of the following error codes: - * - eMBErrorCode::MB_ENOERR If no error occurred. In this case a normal - * Modbus response is sent. - * - eMBErrorCode::MB_ENOREG If no such discrete inputs exists. - * In this case a ILLEGAL DATA ADDRESS exception frame is sent - * as a response. - * - eMBErrorCode::MB_ETIMEDOUT If the requested register block is - * currently not available and the application dependent response - * timeout would be violated. In this case a SLAVE DEVICE BUSY - * exception is sent as a response. - * - eMBErrorCode::MB_EIO If an unrecoverable error occurred. In this case - * a SLAVE DEVICE FAILURE exception is sent as a response. - */ -eMBErrorCode eMBRegDiscreteCB( UCHAR * pucRegBuffer, USHORT usAddress, - USHORT usNDiscrete ); - -#ifdef __cplusplus -PR_END_EXTERN_C -#endif -#endif diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/405be9b38771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/405be9b38771001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/405be9b38771001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/409f17ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/409f17ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/409f17ac9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/70e2f118b66e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/70e2f118b66e001a173da96cce181ab0 deleted file mode 100644 index cda29b385..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/70e2f118b66e001a173da96cce181ab0 +++ /dev/null @@ -1,50 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - -Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/80bd29509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/80bd29509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/80bd29509571001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/904287cb9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/904287cb9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/904287cb9071001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/c0377cadb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/c0377cadb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 93a09e27b..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/c0377cadb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,188 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Modules/Stubs_Handler/Calculate.c \ -../Modules/Stubs_Handler/Progress.c \ -../Modules/Stubs_Handler/StubRealTimeUsage.c \ -../Modules/Stubs_Handler/Stub_Cartridge.c \ -../Modules/Stubs_Handler/Stub_Dancer.c \ -../Modules/Stubs_Handler/Stub_Dispenser.c \ -../Modules/Stubs_Handler/Stub_ExtFlash.c \ -../Modules/Stubs_Handler/Stub_FPGARWReg.c \ -../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ -../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ -../Modules/Stubs_Handler/Stub_GPIO.c \ -../Modules/Stubs_Handler/Stub_HW_Version.c \ -../Modules/Stubs_Handler/Stub_Heater.c \ -../Modules/Stubs_Handler/Stub_I2C.c \ -../Modules/Stubs_Handler/Stub_IntADC.c \ -../Modules/Stubs_Handler/Stub_L6470.c \ -../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ -../Modules/Stubs_Handler/Stub_Motor.c \ -../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ -../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ -../Modules/Stubs_Handler/Stub_SpeedSensor.c \ -../Modules/Stubs_Handler/Stub_Status.c \ -../Modules/Stubs_Handler/Stub_SteperMotor.c \ -../Modules/Stubs_Handler/Stub_TempSensor.c \ -../Modules/Stubs_Handler/Stub_TivaReg.c \ -../Modules/Stubs_Handler/Stub_Valve.c \ -../Modules/Stubs_Handler/User_Leds.c \ -../Modules/Stubs_Handler/temperature_sensor.c - -C_DEPS += \ -./Modules/Stubs_Handler/Calculate.d \ -./Modules/Stubs_Handler/Progress.d \ -./Modules/Stubs_Handler/StubRealTimeUsage.d \ -./Modules/Stubs_Handler/Stub_Cartridge.d \ -./Modules/Stubs_Handler/Stub_Dancer.d \ -./Modules/Stubs_Handler/Stub_Dispenser.d \ -./Modules/Stubs_Handler/Stub_ExtFlash.d \ -./Modules/Stubs_Handler/Stub_FPGARWReg.d \ -./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ -./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ -./Modules/Stubs_Handler/Stub_GPIO.d \ -./Modules/Stubs_Handler/Stub_HW_Version.d \ -./Modules/Stubs_Handler/Stub_Heater.d \ -./Modules/Stubs_Handler/Stub_I2C.d \ -./Modules/Stubs_Handler/Stub_IntADC.d \ -./Modules/Stubs_Handler/Stub_L6470.d \ -./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ -./Modules/Stubs_Handler/Stub_Motor.d \ -./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ -./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ -./Modules/Stubs_Handler/Stub_SpeedSensor.d \ -./Modules/Stubs_Handler/Stub_Status.d \ -./Modules/Stubs_Handler/Stub_SteperMotor.d \ -./Modules/Stubs_Handler/Stub_TempSensor.d \ -./Modules/Stubs_Handler/Stub_TivaReg.d \ -./Modules/Stubs_Handler/Stub_Valve.d \ -./Modules/Stubs_Handler/User_Leds.d \ -./Modules/Stubs_Handler/temperature_sensor.d - -OBJS += \ -./Modules/Stubs_Handler/Calculate.obj \ -./Modules/Stubs_Handler/Progress.obj \ -./Modules/Stubs_Handler/StubRealTimeUsage.obj \ -./Modules/Stubs_Handler/Stub_Cartridge.obj \ -./Modules/Stubs_Handler/Stub_Dancer.obj \ -./Modules/Stubs_Handler/Stub_Dispenser.obj \ -./Modules/Stubs_Handler/Stub_ExtFlash.obj \ -./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ -./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ -./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ -./Modules/Stubs_Handler/Stub_GPIO.obj \ -./Modules/Stubs_Handler/Stub_HW_Version.obj \ -./Modules/Stubs_Handler/Stub_Heater.obj \ -./Modules/Stubs_Handler/Stub_I2C.obj \ -./Modules/Stubs_Handler/Stub_IntADC.obj \ -./Modules/Stubs_Handler/Stub_L6470.obj \ -./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ -./Modules/Stubs_Handler/Stub_Motor.obj \ -./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ -./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ -./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ -./Modules/Stubs_Handler/Stub_Status.obj \ -./Modules/Stubs_Handler/Stub_SteperMotor.obj \ -./Modules/Stubs_Handler/Stub_TempSensor.obj \ -./Modules/Stubs_Handler/Stub_TivaReg.obj \ -./Modules/Stubs_Handler/Stub_Valve.obj \ -./Modules/Stubs_Handler/User_Leds.obj \ -./Modules/Stubs_Handler/temperature_sensor.obj - -OBJS__QUOTED += \ -"Modules\Stubs_Handler\Calculate.obj" \ -"Modules\Stubs_Handler\Progress.obj" \ -"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ -"Modules\Stubs_Handler\Stub_Cartridge.obj" \ -"Modules\Stubs_Handler\Stub_Dancer.obj" \ -"Modules\Stubs_Handler\Stub_Dispenser.obj" \ -"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ -"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ -"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ -"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ -"Modules\Stubs_Handler\Stub_GPIO.obj" \ -"Modules\Stubs_Handler\Stub_HW_Version.obj" \ -"Modules\Stubs_Handler\Stub_Heater.obj" \ -"Modules\Stubs_Handler\Stub_I2C.obj" \ -"Modules\Stubs_Handler\Stub_IntADC.obj" \ -"Modules\Stubs_Handler\Stub_L6470.obj" \ -"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ -"Modules\Stubs_Handler\Stub_Motor.obj" \ -"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ -"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ -"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ -"Modules\Stubs_Handler\Stub_Status.obj" \ -"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ -"Modules\Stubs_Handler\Stub_TempSensor.obj" \ -"Modules\Stubs_Handler\Stub_TivaReg.obj" \ -"Modules\Stubs_Handler\Stub_Valve.obj" \ -"Modules\Stubs_Handler\User_Leds.obj" \ -"Modules\Stubs_Handler\temperature_sensor.obj" - -C_DEPS__QUOTED += \ -"Modules\Stubs_Handler\Calculate.d" \ -"Modules\Stubs_Handler\Progress.d" \ -"Modules\Stubs_Handler\StubRealTimeUsage.d" \ -"Modules\Stubs_Handler\Stub_Cartridge.d" \ -"Modules\Stubs_Handler\Stub_Dancer.d" \ -"Modules\Stubs_Handler\Stub_Dispenser.d" \ -"Modules\Stubs_Handler\Stub_ExtFlash.d" \ -"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ -"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ -"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ -"Modules\Stubs_Handler\Stub_GPIO.d" \ -"Modules\Stubs_Handler\Stub_HW_Version.d" \ -"Modules\Stubs_Handler\Stub_Heater.d" \ -"Modules\Stubs_Handler\Stub_I2C.d" \ -"Modules\Stubs_Handler\Stub_IntADC.d" \ -"Modules\Stubs_Handler\Stub_L6470.d" \ -"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ -"Modules\Stubs_Handler\Stub_Motor.d" \ -"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ -"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ -"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ -"Modules\Stubs_Handler\Stub_Status.d" \ -"Modules\Stubs_Handler\Stub_SteperMotor.d" \ -"Modules\Stubs_Handler\Stub_TempSensor.d" \ -"Modules\Stubs_Handler\Stub_TivaReg.d" \ -"Modules\Stubs_Handler\Stub_Valve.d" \ -"Modules\Stubs_Handler\User_Leds.d" \ -"Modules\Stubs_Handler\temperature_sensor.d" - -C_SRCS__QUOTED += \ -"../Modules/Stubs_Handler/Calculate.c" \ -"../Modules/Stubs_Handler/Progress.c" \ -"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ -"../Modules/Stubs_Handler/Stub_Cartridge.c" \ -"../Modules/Stubs_Handler/Stub_Dancer.c" \ -"../Modules/Stubs_Handler/Stub_Dispenser.c" \ -"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ -"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ -"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ -"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ -"../Modules/Stubs_Handler/Stub_GPIO.c" \ -"../Modules/Stubs_Handler/Stub_HW_Version.c" \ -"../Modules/Stubs_Handler/Stub_Heater.c" \ -"../Modules/Stubs_Handler/Stub_I2C.c" \ -"../Modules/Stubs_Handler/Stub_IntADC.c" \ -"../Modules/Stubs_Handler/Stub_L6470.c" \ -"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ -"../Modules/Stubs_Handler/Stub_Motor.c" \ -"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ -"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ -"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ -"../Modules/Stubs_Handler/Stub_Status.c" \ -"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ -"../Modules/Stubs_Handler/Stub_TempSensor.c" \ -"../Modules/Stubs_Handler/Stub_TivaReg.c" \ -"../Modules/Stubs_Handler/Stub_Valve.c" \ -"../Modules/Stubs_Handler/User_Leds.c" \ -"../Modules/Stubs_Handler/temperature_sensor.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/e07471509571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/e07471509571001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/e07471509571001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/e0f4b072126d001a1f3dc7d0d6cfdd9d b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/e0f4b072126d001a1f3dc7d0d6cfdd9d deleted file mode 100644 index 300cf31f4..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/e0f4b072126d001a1f3dc7d0d6cfdd9d +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/f0f175e78f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/f0f175e78f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/f0f175e78f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/104a5b429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/104a5b429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/104a5b429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/302e946e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/302e946e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/302e946e8771001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/403cfdb48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/403cfdb48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/403cfdb48771001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/509fe78bb56e001a173da96cce181ab0 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/509fe78bb56e001a173da96cce181ab0 deleted file mode 100644 index 8c01da5af..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/509fe78bb56e001a173da96cce181ab0 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/60a452b48771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/60a452b48771001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/60a452b48771001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/a02a4fe39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/a02a4fe39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/a02a4fe39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/0007fce68f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/0007fce68f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/0007fce68f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/302ec6acb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/302ec6acb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index fb81967b2..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/302ec6acb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,32 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS += \ -../Drivers/I2C_Communication/RFID_NFC/NFC.c \ -../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c - -C_DEPS += \ -./Drivers/I2C_Communication/RFID_NFC/NFC.d \ -./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d - -OBJS += \ -./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ -./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj - -OBJS__QUOTED += \ -"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ -"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" - -C_DEPS__QUOTED += \ -"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ -"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" - -C_SRCS__QUOTED += \ -"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ -"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/401b69e39a71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/401b69e39a71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/401b69e39a71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/50ab1dcb9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/50ab1dcb9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/50ab1dcb9071001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/50cd09aab06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/50cd09aab06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 8c01da5af..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/50cd09aab06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/5180118a9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/5180118a9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/5180118a9571001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/703aef9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/703aef9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/703aef9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/808008cc9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/808008cc9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/808008cc9071001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/80bc2b398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/80bc2b398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/80bc2b398871001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/c0105b9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/c0105b9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/c0105b9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/c0f58cacb06e001a18bbdaa1f718f3a2 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/c0f58cacb06e001a18bbdaa1f718f3a2 deleted file mode 100644 index 6f80887dd..000000000 --- a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/c0f58cacb06e001a18bbdaa1f718f3a2 +++ /dev/null @@ -1,15 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -SHELL = cmd.exe - -# Each subdirectory must supply rules for building sources it contributes -Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) - @echo 'Building file: $<' - @echo 'Invoking: ARM Compiler' - "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/f073d74e9571001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/f073d74e9571001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/f073d74e9571001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/f1c3fe398871001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/f1c3fe398871001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/f1c3fe398871001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/00adc1429b71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/00adc1429b71001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/00adc1429b71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/018ac99b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/018ac99b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/018ac99b8f71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/10f80bcb9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/10f80bcb9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/10f80bcb9071001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/20c219ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/20c219ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/20c219ac9071001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/409143ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/409143ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/409143ac9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/608e1f9b8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/608e1f9b8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/608e1f9b8f71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/803610aa9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/803610aa9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/803610aa9071001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/d0054a6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/d0054a6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/d0054a6e8771001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/d01e67ac9071001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/d01e67ac9071001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/d01e67ac9071001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/d0764c6e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/d0764c6e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/d0764c6e8771001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/e051789a8f71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/e051789a8f71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/e051789a8f71001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/f0d6c66e8771001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/f0d6c66e8771001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/f0d6c66e8771001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index index d67e28ddd..a1421bebc 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index index 5ae7cb3f9..2d94195ec 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index index 1f76c510a..eb1863152 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index index 4f89af2ab..739043c82 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index index d9ec17fd2..a08673fc8 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index index 5871fcfa2..da138bce0 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index index 5d8caa3f7..d0659ef9f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index index f433931dc..05301a442 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index index 1f8dbecce..a435ad170 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index index 146ebcec2..cb71d3d92 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index index 232449f5a..654a7efdd 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index index 17c64634a..6f81d3844 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index index 887ee7df7..4e5deda48 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index index f1661a1ba..403a89583 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index index d6ca1aee2..51526f8b3 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index index cfe062af2..220df3b01 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index index d3665463e..c7b9aab24 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index index a96545657..7d55682d2 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index index 0d7854de0..48a471490 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index index 7e9c78603..ac2ed8354 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index index 48e9719a0..94e5781ae 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index index c62943609..086abbf23 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index index ef0c27c90..90e3d6e52 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index index 6a78154db..f3482c941 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index index da7de2858..6a568ba81 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index index 5cf4414c1..95b440993 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index index 91be09e75..912aa1af1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index index 625e48c65..038657041 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index index 5564b9427..69fae0b04 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index index f3b34f1b3..88adc091e 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index index a9d718487..529db06ba 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index index 91f5bb5b3..9d2882267 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index index 076f2e0b6..5986dd4b6 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index index 77419c43d..7c3d56641 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index index ff7ba88a9..2d9e4cec3 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index index ada0de20e..8d4b4a09b 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index index bde396e76..7d90386ef 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index index 66634f133..bb2910b9e 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index index e1a8d2845..48f34c645 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index index e89ae5f02..3ae89772e 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index index f3f6d8ca6..819d95b2a 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index index 89f51c95a..72af67760 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index index 29ac63784..985513bf5 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index index 08d83fd1d..29b4ecd27 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index index b07785d93..fd85f7e38 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index index f44c216ee..a102316bc 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index index 155eacf85..92173c6f5 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index index 801e880f1..479514c38 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index index d234f06c6..7cb05645b 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index index 3dfd1cd6b..47946de79 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index index c7ff0e046..097eb6abf 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index index 227a86e51..7b34b4653 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index index 3255c2885..774863f3e 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index index f7b77498a..dc780b91f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index index fee7eb411..e7228dbf0 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index index 752503fcc..e4296dbb6 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index index fa3b30e37..054c20d7f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index index 2d83ca774..cb25da445 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index index 02e77b00d..cd986ac4c 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index index 76a063062..1553ba713 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index index 9a51b7a90..516df1909 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index index bf596e3c0..d89b762aa 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index index 7a1990e6c..90621363d 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index index dc313b465..531cf4aee 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index index 06f3c31e3..49ed2d4ea 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index index 6903df0cd..7155518eb 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index index 3bc3f4310..cedcd3e9c 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index index d9581f493..701baa431 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index index fb33f5486..7a0ed2378 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index index 8fa320ac8..3815b3c96 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index index 66bd004f4..614faadad 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index index bd2e5a653..e798f1ea7 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index index a2240a4ae..4efbecc44 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index index e6bda5183..b1efbde96 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index index c07beab3e..41bb5f7cb 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index index f3553887f..5296a29ff 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index index c1a14b5d3..58e12b873 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index index 5404e27b1..58f53858d 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index index 7ef256e61..99236c4ab 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index index 9f902de18..2182e6662 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index index 3063a2fdd..ee56f3f33 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index index 7f724ae81..64bb90857 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index index 975f61e90..037aa9727 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index new file mode 100644 index 000000000..1a17a7a9c Binary files /dev/null and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/51/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/51/history.index index edad9f039..ff9509018 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/51/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/51/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/65/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/65/history.index index 271bb2c36..062fd43d6 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/65/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/65/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/73/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/73/history.index index 68125ce29..842ba13a0 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/73/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/73/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/a8/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/a8/history.index index 70f818eaa..396670f3e 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/a8/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/a8/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/history.index index 1f59539e2..78c88b004 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/a2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/b5/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/b5/history.index index e9cdf2576..1a4d7cb42 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/b5/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/b5/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/b5/properties.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/b5/properties.index new file mode 100644 index 000000000..312c6eb65 Binary files /dev/null and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/23/b5/properties.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.markers b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.markers index 9a19057ab..47fa68fb7 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.markers and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.markers differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.markers.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.markers.snap index a89a33b0b..6f5ee61ae 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.markers.snap and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.markers.snap differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.syncinfo.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.syncinfo.snap index 464a95717..fd766bfd2 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.syncinfo.snap and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.syncinfo.snap differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.markers.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.markers.snap index 464a95717..fd766bfd2 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.markers.snap and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.markers.snap differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.syncinfo.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.syncinfo.snap index 464a95717..fd766bfd2 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.syncinfo.snap and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.syncinfo.snap differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap index 464a95717..fd766bfd2 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap and b/Software/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.root/53.tree b/Software/.metadata/.plugins/org.eclipse.core.resources/.root/53.tree deleted file mode 100644 index ff8ec2c5e..000000000 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.root/53.tree and /dev/null differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.root/54.tree b/Software/.metadata/.plugins/org.eclipse.core.resources/.root/54.tree new file mode 100644 index 000000000..5fc9c6a4d Binary files /dev/null and b/Software/.metadata/.plugins/org.eclipse.core.resources/.root/54.tree differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources b/Software/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources index 2e2db244c..dd8e5a9f2 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources and b/Software/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/53.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/53.snap deleted file mode 100644 index 4896b16ec..000000000 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/53.snap and /dev/null differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/54.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/54.snap new file mode 100644 index 000000000..7fcdee9a7 Binary files /dev/null and b/Software/.metadata/.plugins/org.eclipse.core.resources/54.snap differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.managedbuilder.core.prefs b/Software/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.managedbuilder.core.prefs index 385d297f2..e4040ecb2 100644 --- a/Software/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.managedbuilder.core.prefs +++ b/Software/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.managedbuilder.core.prefs @@ -1,4 +1,4 @@ eclipse.preferences.version=1 properties/Jig.com.ti.ccstudio.buildDefinitions.TMS470.ProjectType.418505826/com.ti.ccstudio.buildDefinitions.TMS470.Debug.87225697=com.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.compilerDebug.1552867542.589841745\=rebuildState\\\=true\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470.Debug.87225697\=rcState\\\=4\\r\\nrebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.compilerDebug.1552867542.2061539131\=rebuildState\\\=true\\r\\n\r\ncom.ti.rtsc.buildDefinitions.XDC_3.16.tool.437055464\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.compilerDebug.1552867542.1562887158\=rebuildState\\\=true\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.linkerDebug.2079256084\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.DebugToolchain.627960570\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.hex.604449639\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.DebugToolchain.1083174985\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.linkerDebug.383707052\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.compilerDebug.1552867542\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.compilerDebug.2049506076\=rebuildState\\\=false\\r\\n\r\ncom.ti.rtsc.buildDefinitions.XDC_3.16.tool.877121938\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.hex.2029334343\=rebuildState\\\=false\\r\\n\r\n -properties/Jig.com.ti.ccstudio.buildDefinitions.TMS470.ProjectType.418505826/com.ti.ccstudio.buildDefinitions.TMS470.Debug.87225697.838615887=com.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.DebugToolchain.374121404\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.hex.1807780762\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.DebugToolchain.57149553\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.linkerDebug.2015775392\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.hex.1924596764\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.compilerDebug.639620890\=rebuildState\\\=false\\r\\n\r\ncom.ti.rtsc.buildDefinitions.XDC_3.16.tool.249827648\=rebuildState\\\=false\\r\\n\r\ncom.ti.rtsc.buildDefinitions.XDC_3.16.tool.788123529\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.linkerDebug.107094389\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470.Debug.87225697.838615887\=rcState\\\=-1\\r\\nrebuildState\\\=true\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.compilerDebug.1272439107\=rebuildState\\\=false\\r\\n\r\n -properties/Jig.com.ti.ccstudio.buildDefinitions.TMS470.ProjectType.418505826/com.ti.ccstudio.buildDefinitions.TMS470.Release.998083265=com.ti.rtsc.buildDefinitions.XDC_3.16.tool.171091468\=rebuildState\\\=true\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470.Release.998083265\=rcState\\\=-1\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_15.12.hex.1430899260\=rebuildState\\\=true\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_15.12.exe.ReleaseToolchain.6908301\=rebuildState\\\=true\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_15.12.exe.compilerRelease.1358938316\=rebuildState\\\=true\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_15.12.exe.linkerRelease.914941675\=rebuildState\\\=true\\r\\n\r\n +properties/Jig.com.ti.ccstudio.buildDefinitions.TMS470.ProjectType.418505826/com.ti.ccstudio.buildDefinitions.TMS470.Debug.87225697.838615887=com.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.DebugToolchain.374121404\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.hex.1807780762\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.DebugToolchain.57149553\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.linkerDebug.2015775392\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.hex.1924596764\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.compilerDebug.639620890\=rebuildState\\\=false\\r\\n\r\ncom.ti.rtsc.buildDefinitions.XDC_3.16.tool.249827648\=rebuildState\\\=false\\r\\n\r\ncom.ti.rtsc.buildDefinitions.XDC_3.16.tool.788123529\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.linkerDebug.107094389\=rebuildState\\\=false\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470.Debug.87225697.838615887\=rcState\\\=4\\r\\nrebuildState\\\=true\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_16.9.exe.compilerDebug.1272439107\=rebuildState\\\=false\\r\\n\r\n +properties/Jig.com.ti.ccstudio.buildDefinitions.TMS470.ProjectType.418505826/com.ti.ccstudio.buildDefinitions.TMS470.Release.998083265=com.ti.rtsc.buildDefinitions.XDC_3.16.tool.171091468\=rebuildState\\\=true\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470.Release.998083265\=rcState\\\=4\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_15.12.hex.1430899260\=rebuildState\\\=true\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_15.12.exe.ReleaseToolchain.6908301\=rebuildState\\\=true\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_15.12.exe.compilerRelease.1358938316\=rebuildState\\\=true\\r\\n\r\ncom.ti.ccstudio.buildDefinitions.TMS470_15.12.exe.linkerRelease.914941675\=rebuildState\\\=true\\r\\n\r\n diff --git a/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi b/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi index d3c1c9c4c..b5bee5ea9 100644 --- a/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi +++ b/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi @@ -1,10 +1,10 @@ - - + + activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration ModelMigrationProcessor.001 activeSchemeId:com.ti.ccstudio.ui.keyBindingScheme - + @@ -13,9 +13,9 @@ topLevel shellMaximized - - - + + + persp.actionSet:org.eclipse.ui.cheatsheets.actionSet persp.actionSet:org.eclipse.rse.core.search.searchActionSet @@ -65,72 +65,72 @@ persp.newWizSC:org.eclipse.rtsc.builddefinitions.dspbios.ui.DSPBIOSCreateNew persp.newWizSC:org.eclipse.rtsc.xdctools.ui.cdt.wizards.configfile.RTSCConfigFileWizard persp.showIn:org.eclipse.tm.terminal.view.ui.TerminalsView - - - - + + + + - - + + - - - - + + + + - - - - - + + + + + - - - - - - - - + + + + + + + + - - - - - + + + + + - - + + - - - + + + - + General C/C++ Team - - - - - - - - - + + + + + + + + + - + persp.actionSet:org.eclipse.ui.cheatsheets.actionSet persp.actionSet:org.eclipse.rse.core.search.searchActionSet @@ -177,49 +177,48 @@ persp.actionSet:com.ti.dvt.rovsupport persp.actionSet:com.ti.dvt.via.plugin.ActionSet persp.showIn:org.eclipse.tm.terminal.view.ui.TerminalsView - - - + + + - - - - + + + + - - - - - + + + + + - - - - - - - - + + + + + + + + - - - noFocus - - - - - - + + + + + + + + - - - + + + - + Analysis Views - + @@ -228,8158 +227,7889 @@ - - - - + + + + - + View categoryTag:Help - + View categoryTag:General - + ViewMenu menuContribution:menu - + - + View categoryTag:Help - - - + + + active noFocus - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - - menuContribution:popup - popup:#OverviewRulerContext - - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + active + + menuContribution:popup + popup:#CEditorContext + popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext + popup:#AbstractTextEditorContext + + + menuContribution:popup + popup:#CEditorRulerContext + popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext + popup:#AbstractTextEditorRulerContext + + + menuContribution:popup + popup:#OverviewRulerContext + + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + + menuContribution:popup + popup:#CEditorContext + popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext + popup:#AbstractTextEditorContext + + + menuContribution:popup + popup:#CEditorRulerContext + popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext + popup:#AbstractTextEditorRulerContext + + + menuContribution:popup + popup:#OverviewRulerContext + + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.debug.ui.SourceNotFoundEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.ui.cmdFileEditor removeOnHide - + menuContribution:popup popup:#ASMEditorContext popup:com.ti.ccstudio.ui.cmdFileEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#ASMEditorRulerContext popup:com.ti.ccstudio.ui.cmdFileEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + + menuContribution:popup + popup:#CEditorContext + popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext + popup:#AbstractTextEditorContext + + + menuContribution:popup + popup:#CEditorRulerContext + popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext + popup:#AbstractTextEditorRulerContext + + + menuContribution:popup + popup:#OverviewRulerContext + + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.debug.ui.SourceNotFoundEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.debug.ui.SourceNotFoundEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + + menuContribution:popup + popup:#CEditorContext + popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext + popup:#AbstractTextEditorContext + + + menuContribution:popup + popup:#CEditorRulerContext + popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext + popup:#AbstractTextEditorRulerContext + + + menuContribution:popup + popup:#OverviewRulerContext + + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + + menuContribution:popup + popup:#OverviewRulerContext + + + menuContribution:popup + popup:#CEditorContext + popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext + popup:#AbstractTextEditorContext + + + menuContribution:popup + popup:#CEditorRulerContext + popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext + popup:#AbstractTextEditorRulerContext + + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.ui.DefaultTextEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - - menuContribution:popup - popup:#OverviewRulerContext - - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - - menuContribution:popup - popup:#OverviewRulerContext - - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - - menuContribution:popup - popup:#OverviewRulerContext - - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - - menuContribution:popup - popup:#OverviewRulerContext - - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - - menuContribution:popup - popup:#OverviewRulerContext - - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - - menuContribution:popup - popup:#OverviewRulerContext - - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - - menuContribution:popup - popup:#OverviewRulerContext - - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - - menuContribution:popup - popup:#OverviewRulerContext - - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - - menuContribution:popup - popup:#OverviewRulerContext - - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - - menuContribution:popup - popup:#OverviewRulerContext - - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - - menuContribution:popup - popup:#OverviewRulerContext - - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - active - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - - menuContribution:popup - popup:#OverviewRulerContext - - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - - menuContribution:popup - popup:#OverviewRulerContext - - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - - menuContribution:popup - popup:#OverviewRulerContext - - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - - menuContribution:popup - popup:#OverviewRulerContext - - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - - menuContribution:popup - popup:#OverviewRulerContext - - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - - menuContribution:popup - popup:#OverviewRulerContext - - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - - menuContribution:popup - popup:#CEditorContext - popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext - popup:#AbstractTextEditorContext - - - menuContribution:popup - popup:#CEditorRulerContext - popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext - popup:#AbstractTextEditorRulerContext - - - menuContribution:popup - popup:#OverviewRulerContext - - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + + + + Editor + org.eclipse.cdt.ui.editor.CEditor + removeOnHide + activeOnClose + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + org.eclipse.e4.primaryDataStack EditorStack - - - + + + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.ui.MessageConsole.#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + - + - + View categoryTag:General - busy - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + - + View categoryTag:Code Composer Studio - + ViewMenu menuContribution:menu - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + ViewMenu menuContribution:menu - + - + View categoryTag:Code Composer Studio - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + - + View categoryTag:Debug - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + - + View categoryTag:Debug - + View categoryTag:Grace - + View categoryTag:RTSC - + ViewMenu menuContribution:menu - + - + View categoryTag:Debug - + - + View categoryTag:General highlighted - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + - + View categoryTag:Other - + ViewMenu menuContribution:menu - + - + View categoryTag:C/C++ - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.cdt.ui.callHierarchy - + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.ui.views.ProgressView - + menuContribution:popup popup:org.eclipse.ui.views.ProgressView - + menuContribution:popup popup:org.eclipse.ui.views.ProgressView - + - + View categoryTag:C/C++ - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy.members - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy.members - + - + View categoryTag:Analysis Views - + ViewMenu menuContribution:menu - + - + View categoryTag:Team - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.team.ui.GenericHistoryView - + - - + + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - - + + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + toolbarSeparator - + - + Draggable - - Opaque - - - Opaque - - + Opaque - + Opaque - + Draggable - + Opaque - - Opaque - - - Opaque - - + Opaque - + Draggable - - Opaque - - - Opaque - - + Opaque - + Opaque - + Draggable - + Draggable - + Opaque - - Opaque - - - Opaque - - + Opaque - + Draggable - - Opaque - - - Opaque - - - Opaque - - - Opaque - - + Opaque - + Opaque - + Opaque - + Opaque - + Draggable - - Opaque - - + Opaque - + Opaque - - Opaque - - - Opaque - - + Opaque - + Draggable - - Opaque - - - Opaque - - + Opaque - + Opaque - + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - - + + Opaque - + Opaque - + Opaque - + Draggable - + Draggable - + toolbarSeparator - + - + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + stretch SHOW_RESTORE_MENU - + Draggable HIDEABLE SHOW_RESTORE_MENU - - + + stretch - + Draggable - + Draggable - - + + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - - + + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration platform:win32 - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration platform:win32 - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - - - - - - - - + + + + + + + + + + + - - - - - + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Editor - + View categoryTag:C/C++ - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Make - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:General - + View categoryTag:Help - + View categoryTag:Connections - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:General - + View categoryTag:General - + View categoryTag:Team - + View categoryTag:Team - + View categoryTag:Terminal - + View categoryTag:Other - + View categoryTag:General - + View categoryTag:General - + View categoryTag:Help - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:General - + View categoryTag:DVT - + View categoryTag:Analysis Views - + View categoryTag:DVT - + View categoryTag:EnergyTrace - + View categoryTag:Analysis Views - + View categoryTag:Profiling - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:UIA - + View categoryTag:Grace - + View categoryTag:Other - + View categoryTag:RTSC - + View categoryTag:RTSC - + View categoryTag:RTSC - - - - - + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - + + + - - - + + + - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Software/.metadata/.plugins/org.eclipse.search/dialog_settings.xml b/Software/.metadata/.plugins/org.eclipse.search/dialog_settings.xml index c30e39786..4f467b915 100644 --- a/Software/.metadata/.plugins/org.eclipse.search/dialog_settings.xml +++ b/Software/.metadata/.plugins/org.eclipse.search/dialog_settings.xml @@ -20,7 +20,7 @@ - + @@ -32,7 +32,7 @@ - + @@ -44,7 +44,7 @@ - + @@ -56,7 +56,7 @@ - + @@ -68,7 +68,7 @@ - + @@ -83,7 +83,7 @@ - + @@ -95,7 +95,7 @@ - + @@ -107,7 +107,7 @@ - + @@ -119,7 +119,7 @@ - + @@ -131,7 +131,7 @@ - + @@ -143,7 +143,7 @@ - + @@ -155,7 +155,7 @@ - + diff --git a/Software/.metadata/version.ini b/Software/.metadata/version.ini index b3f65a5de..1f7b1c29a 100644 --- a/Software/.metadata/version.ini +++ b/Software/.metadata/version.ini @@ -1,3 +1,3 @@ -#Wed Mar 25 20:29:54 IST 2020 +#Sun Mar 29 09:07:31 IDT 2020 org.eclipse.core.runtime=2 org.eclipse.platform=4.6.0.v20160606-1100 diff --git a/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c b/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c index 76a92bd89..25f9bcb3d 100644 --- a/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c +++ b/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c @@ -368,7 +368,7 @@ void Stub_ProgressRequest(MessageContainer* requestContainer) if(Write_Buf[0] == 0)//Read { - Head_Read_IO_Reg(Script_Slave_Add, LOW); + //Head_Read_IO_Reg(Script_Slave_Add, LOW); delayms(1); if(Script_Slave_Add == 0x40) @@ -403,7 +403,7 @@ void Stub_ProgressRequest(MessageContainer* requestContainer) if(Write_Buf[0] == 1)//Read { - Head_Read_IO_Reg(Script_Slave_Add, HIGH); + //Head_Read_IO_Reg(Script_Slave_Add, HIGH); delayms(1); if(Script_Slave_Add == 0x40) @@ -427,7 +427,7 @@ void Stub_ProgressRequest(MessageContainer* requestContainer) response.has_progress = true; } else - if(Script_Slave_Add == 0x46) + if(Script_Slave_Add == 0x46)//LS { Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[1]; response.progress = Read_Buf[0]; @@ -435,6 +435,7 @@ void Stub_ProgressRequest(MessageContainer* requestContainer) } } else + /* if(Write_Buf[0] == 2)//write { if(Script_Slave_Add == 0x40) @@ -452,7 +453,7 @@ void Stub_ProgressRequest(MessageContainer* requestContainer) Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); } - Head_Write_IO_Reg(Script_Slave_Add, LOW); + //Head_Write_IO_Reg(Script_Slave_Add, LOW); } if(Write_Buf[0] == 3)//write { @@ -463,14 +464,46 @@ void Stub_ProgressRequest(MessageContainer* requestContainer) else if(Script_Slave_Add == 0x42) { - Head_I2C_EXP2_0x42.uchar[1] = Write_Buf[1]; + //Head_I2C_EXP2_0x42.uchar[1] = Write_Buf[1]; + Head_I2C_EXP2_0x42.bits.OUTPUT_MAG_DIR = (Write_Buf[1] & 0x01);//control only the magnet } else if(Script_Slave_Add == 0x46) { Head_I2C_EXP3_0x44.uchar[1] = (Write_Buf[1] & 0x0C); } - Head_Write_IO_Reg(Script_Slave_Add, HIGH); + //Head_Write_IO_Reg(Script_Slave_Add, HIGH); + } + */ + { + // write , Write_Buf[0] bit number 0..15 , Write_Buf[1] 0 or 1 + Write_Buf[1] = Write_Buf[1] & 0x01; + + if(Script_Slave_Add == 0x40) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP1_0x40.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP1_0x40.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x42) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP2_0x42.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP2_0x42.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); + + if(Write_Buf[1] == 0x01) + Head_I2C_EXP4_0x46.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP4_0x46.uchar[0] &= ~(0x01 << Write_Buf[0]); + } } } else -- cgit v1.3.1 From cec34cfdc8aefd337fa71b423431e67ec93e79a6 Mon Sep 17 00:00:00 2001 From: Avi Levkovich Date: Sun, 29 Mar 2020 14:07:08 +0300 Subject: update stub - Head Card I/O --- .../.history/0/b0871b93ac71001a1f70833eb9ed7011 | 29 + .../.history/11/203f98efab71001a1f70833eb9ed7011 | 56 + .../.history/11/908c2293ac71001a1f70833eb9ed7011 | 26 + .../.history/14/000403efab71001a1f70833eb9ed7011 | 15 + .../.history/14/503d3092ac71001a1f70833eb9ed7011 | 146 + .../.history/15/30acbceeab71001a1f70833eb9ed7011 | 22 + .../.history/15/50f95e93ac71001a1f70833eb9ed7011 | 15 + .../.history/16/101989eeab71001a1f70833eb9ed7011 | 15 + .../.history/16/a0062a93ac71001a1f70833eb9ed7011 | 15 + .../.history/16/a074e4edab71001a1f70833eb9ed7011 | 632 +++ .../.history/17/102c8791ac71001a1f70833eb9ed7011 | 26 + .../.history/18/100b4892ac71001a1f70833eb9ed7011 | 152 + .../.history/18/30055093ac71001a1f70833eb9ed7011 | 26 + .../.history/18/5093ec93ac71001a1f70833eb9ed7011 | 44 + .../.history/18/60ffae91ac71001a1f70833eb9ed7011 | 44 + .../.history/18/b0279eeeab71001a1f70833eb9ed7011 | 26 + .../.history/18/e0b42febab71001a1f70833eb9ed7011 | 26 + .../.history/1b/40f05993ac71001a1f70833eb9ed7011 | 26 + .../.history/1b/d0d679eeab71001a1f70833eb9ed7011 | 15 + .../.history/1c/201df7eeab71001a1f70833eb9ed7011 | 26 + .../.history/1c/20e879ecab71001a1f70833eb9ed7011 | 62 + .../.history/1e/206fa093ac71001a1f70833eb9ed7011 | 32 + .../.history/1f/70d150ebab71001a1f70833eb9ed7011 | 62 + .../.history/1f/d0957becab71001a1f70833eb9ed7011 | 57 + .../.history/2/60984b93ac71001a1f70833eb9ed7011 | 26 + .../.history/2/e0765b93ac71001a1f70833eb9ed7011 | 15 + .../.history/20/70b102ebab71001a1f70833eb9ed7011 | 211 + .../.history/21/d0a4b593ac71001a1f70833eb9ed7011 | 15 + .../.history/22/503ff0eeab71001a1f70833eb9ed7011 | 15 + .../.history/23/405639efab71001a1f70833eb9ed7011 | 22 + .../.history/23/60e55992ac71001a1f70833eb9ed7011 | 62 + .../.history/25/80608b93ac71001a1f70833eb9ed7011 | 22 + .../.history/27/e00c4393ac71001a1f70833eb9ed7011 | 26 + .../.history/27/f0659a91ac71001a1f70833eb9ed7011 | 50 + .../.history/28/f05e1deeab71001a1f70833eb9ed7011 | 26 + .../.history/29/60b55594ac71001a1f70833eb9ed7011 | 22 + .../.history/29/a0a7a193ac71001a1f70833eb9ed7011 | 22 + .../.history/2a/10d20694ac71001a1f70833eb9ed7011 | 56 + .../.history/2a/604a48efab71001a1f70833eb9ed7011 | 36 + .../.history/2b/a0840beeab71001a1f70833eb9ed7011 | 29 + .../.history/2c/30ae0fefab71001a1f70833eb9ed7011 | 62 + .../.history/2c/9025bbeeab71001a1f70833eb9ed7011 | 32 + .../.history/2c/a021e193ac71001a1f70833eb9ed7011 | 15 + .../.history/2d/00f90592ac71001a1f70833eb9ed7011 | 463 ++ .../.history/2d/304f1a93ac71001a1f70833eb9ed7011 | 38 + .../.history/2d/90f97e92ac71001a1f70833eb9ed7011 | 170 + .../.history/2f/50cdfcefab71001a1f70833eb9ed7011 | 38 + .../.history/3/601ff9ebab71001a1f70833eb9ed7011 | 463 ++ .../.history/3/70d06392ac71001a1f70833eb9ed7011 | 43 + .../.history/30/40c73befab71001a1f70833eb9ed7011 | 26 + .../.history/32/006c5b92ac71001a1f70833eb9ed7011 | 57 + .../.history/33/30e2bd93ac71001a1f70833eb9ed7011 | 26 + .../.history/33/a05061efab71001a1f70833eb9ed7011 | 50 + .../.history/34/601196eeab71001a1f70833eb9ed7011 | 22 + .../.history/34/f00ba991ac71001a1f70833eb9ed7011 | 38 + .../.history/35/a02c6deeab71001a1f70833eb9ed7011 | 22 + .../.history/36/50b7dceeab71001a1f70833eb9ed7011 | 32 + .../.history/37/204d6cefab71001a1f70833eb9ed7011 | 36 + .../.history/37/c0207ceeab71001a1f70833eb9ed7011 | 26 + .../.history/38/904c82ecab71001a1f70833eb9ed7011 | 50 + .../.history/38/d0a3c0eeab71001a1f70833eb9ed7011 | 15 + .../.history/38/f06e44eeab71001a1f70833eb9ed7011 | 26 + .../.history/39/a0b22deeab71001a1f70833eb9ed7011 | 29 + .../.history/39/d07ac891ac71001a1f70833eb9ed7011 | 86 + .../.history/3a/c0c77f93ac71001a1f70833eb9ed7011 | 32 + .../.history/3b/208025efab71001a1f70833eb9ed7011 | 15 + .../.history/3c/80c00492ac71001a1f70833eb9ed7011 | 410 ++ .../.history/3d/309fdd93ac71001a1f70833eb9ed7011 | 15 + .../.history/3e/10c33defab71001a1f70833eb9ed7011 | 15 + .../.history/3e/700f9e91ac71001a1f70833eb9ed7011 | 26 + .../.history/3e/80c071eeab71001a1f70833eb9ed7011 | 15 + .../.history/3f/503effefab71001a1f70833eb9ed7011 | 29 + .../.history/4/80ab42ecab71001a1f70833eb9ed7011 | 155 + .../.history/40/a0310894ac71001a1f70833eb9ed7011 | 50 + .../.history/41/00e94beeab71001a1f70833eb9ed7011 | 29 + .../.history/41/a0c59c93ac71001a1f70833eb9ed7011 | 26 + .../.history/42/809b1becab71001a1f70833eb9ed7011 | 62 + .../.history/43/806baa91ac71001a1f70833eb9ed7011 | 29 + .../.history/43/9088e9eeab71001a1f70833eb9ed7011 | 26 + .../.history/44/90c46eecab71001a1f70833eb9ed7011 | 152 + .../.history/45/30691c8bac71001a1f70833eb9ed7011 | 813 +++ .../.history/45/60c91eefab71001a1f70833eb9ed7011 | 15 + .../.history/45/e0945693ac71001a1f70833eb9ed7011 | 26 + .../.history/46/500911ebab71001a1f70833eb9ed7011 | 22 + .../.history/46/506b5292ac71001a1f70833eb9ed7011 | 162 + .../.history/47/d0f81aefab71001a1f70833eb9ed7011 | 22 + .../.history/47/f0154893ac71001a1f70833eb9ed7011 | 38 + .../.history/48/70efc093ac71001a1f70833eb9ed7011 | 26 + .../.history/49/404c9e93ac71001a1f70833eb9ed7011 | 15 + .../.history/49/508c9191ac71001a1f70833eb9ed7011 | 29 + .../.history/4a/20e100efab71001a1f70833eb9ed7011 | 26 + .../.history/4a/801035efab71001a1f70833eb9ed7011 | 32 + .../.history/4a/e0706292ac71001a1f70833eb9ed7011 | 50 + .../.history/4b/30f18292ac71001a1f70833eb9ed7011 | 183 + .../.history/4b/8025f3eeab71001a1f70833eb9ed7011 | 26 + .../.history/4d/4045b493ac71001a1f70833eb9ed7011 | 26 + .../.history/4d/b0a00aebab71001a1f70833eb9ed7011 | 36 + .../.history/4e/20f6beeeab71001a1f70833eb9ed7011 | 26 + .../.history/4e/505854efab71001a1f70833eb9ed7011 | 44 + .../.history/5/1015e793ac71001a1f70833eb9ed7011 | 26 + .../.history/5/10b1c3eeab71001a1f70833eb9ed7011 | 32 + .../.history/5/20914194ac71001a1f70833eb9ed7011 | 50 + .../.history/5/4069a4eeab71001a1f70833eb9ed7011 | 32 + .../.history/5/40fe2d93ac71001a1f70833eb9ed7011 | 38 + .../.history/51/40bcabeeab71001a1f70833eb9ed7011 | 22 + .../.history/51/a0e57991ac71001a1f70833eb9ed7011 | 211 + .../.history/51/e05010ecab71001a1f70833eb9ed7011 | 106 + .../.history/52/70fc9feeab71001a1f70833eb9ed7011 | 15 + .../.history/52/b0c815efab71001a1f70833eb9ed7011 | 15 + .../.history/52/d007e493ac71001a1f70833eb9ed7011 | 32 + .../.history/53/107d37ebab71001a1f70833eb9ed7011 | 29 + .../.history/53/60e6bb93ac71001a1f70833eb9ed7011 | 15 + .../.history/54/5040e593ac71001a1f70833eb9ed7011 | 22 + .../.history/54/70ce7deeab71001a1f70833eb9ed7011 | 15 + .../.history/55/60d69493ac71001a1f70833eb9ed7011 | 32 + .../.history/56/104214efab71001a1f70833eb9ed7011 | 26 + .../.history/56/30867993ac71001a1f70833eb9ed7011 | 44 + .../.history/57/209b6f93ac71001a1f70833eb9ed7011 | 26 + .../.history/57/403a2493ac71001a1f70833eb9ed7011 | 15 + .../.history/59/a07202f0ab71001a1f70833eb9ed7011 | 32 + .../.history/5a/10362693ac71001a1f70833eb9ed7011 | 26 + .../.history/5a/d089fe92ac71001a1f70833eb9ed7011 | 722 +++ .../.history/5a/f01fe3eeab71001a1f70833eb9ed7011 | 22 + .../.history/5b/d06324eeab71001a1f70833eb9ed7011 | 26 + .../.history/5c/80b04e94ac71001a1f70833eb9ed7011 | 29 + .../.history/5e/803ba693ac71001a1f70833eb9ed7011 | 22 + .../.history/5e/d0ce9eefab71001a1f70833eb9ed7011 | 15 + .../.history/6/c048a993ac71001a1f70833eb9ed7011 | 32 + .../.history/6/c0a29a93ac71001a1f70833eb9ed7011 | 22 + .../.history/60/f0436a93ac71001a1f70833eb9ed7011 | 15 + .../.history/61/204b19efab71001a1f70833eb9ed7011 | 32 + .../.history/62/601b53ebab71001a1f70833eb9ed7011 | 57 + .../.history/62/80f923efab71001a1f70833eb9ed7011 | 26 + .../.history/62/c0dd9beeab71001a1f70833eb9ed7011 | 22 + .../.history/64/0005f893ac71001a1f70833eb9ed7011 | 50 + .../.history/64/10114193ac71001a1f70833eb9ed7011 | 50 + .../.history/65/10eeae93ac71001a1f70833eb9ed7011 | 22 + .../.history/66/00151beeab71001a1f70833eb9ed7011 | 15 + .../.history/66/506719eeab71001a1f70833eb9ed7011 | 26 + .../.history/66/b05efdeeab71001a1f70833eb9ed7011 | 15 + .../.history/67/7039f8efab71001a1f70833eb9ed7011 | 43 + .../.history/67/e035ce93ac71001a1f70833eb9ed7011 | 62 + .../.history/67/f0c33192ac71001a1f70833eb9ed7011 | 155 + .../.history/68/30098591ac71001a1f70833eb9ed7011 | 22 + .../.history/68/80d71592ac71001a1f70833eb9ed7011 | 106 + .../.history/68/c066a493ac71001a1f70833eb9ed7011 | 32 + .../.history/68/d05d2f93ac71001a1f70833eb9ed7011 | 29 + .../.history/68/e086efefab71001a1f70833eb9ed7011 | 50 + .../.history/6b/000a8f93ac71001a1f70833eb9ed7011 | 22 + .../.history/6b/d0ec99efab71001a1f70833eb9ed7011 | 50 + .../.history/6c/f073df93ac71001a1f70833eb9ed7011 | 26 + .../.history/6d/b0af40ecab71001a1f70833eb9ed7011 | 146 + .../.history/6e/e06f7193ac71001a1f70833eb9ed7011 | 15 + .../.history/6f/4081aa93ac71001a1f70833eb9ed7011 | 22 + .../.history/6f/c0421defab71001a1f70833eb9ed7011 | 26 + .../.history/6f/f08f8793ac71001a1f70833eb9ed7011 | 15 + .../.history/70/30d98093ac71001a1f70833eb9ed7011 | 22 + .../.history/70/c0e57a93ac71001a1f70833eb9ed7011 | 36 + .../.history/71/105f3cebab71001a1f70833eb9ed7011 | 38 + .../.history/73/e02c9193ac71001a1f70833eb9ed7011 | 32 + .../.history/74/70dc51eeab71001a1f70833eb9ed7011 | 26 + .../.history/75/f0ba61eeab71001a1f70833eb9ed7011 | 26 + .../.history/77/5075f193ac71001a1f70833eb9ed7011 | 44 + .../.history/77/6040ad93ac71001a1f70833eb9ed7011 | 32 + .../.history/77/709e9b91ac71001a1f70833eb9ed7011 | 43 + .../.history/78/70578693ac71001a1f70833eb9ed7011 | 26 + .../.history/78/805659eeab71001a1f70833eb9ed7011 | 26 + .../.history/78/e0acc5eeab71001a1f70833eb9ed7011 | 22 + .../.history/79/30380993ac71001a1f70833eb9ed7011 | 62 + .../.history/79/3059b5eeab71001a1f70833eb9ed7011 | 32 + .../.history/7a/20c05493ac71001a1f70833eb9ed7011 | 15 + .../.history/7c/50b3c991ac71001a1f70833eb9ed7011 | 85 + .../.history/7d/301c6193ac71001a1f70833eb9ed7011 | 26 + .../.history/7d/706e9793ac71001a1f70833eb9ed7011 | 22 + .../.history/7d/a03fdc93ac71001a1f70833eb9ed7011 | 26 + .../.history/7d/e01922eeab71001a1f70833eb9ed7011 | 15 + .../.history/8/50bc73eeab71001a1f70833eb9ed7011 | 26 + .../.history/8/900eaaeeab71001a1f70833eb9ed7011 | 32 + .../.history/80/a083a9ecab71001a1f70833eb9ed7011 | 170 + .../.history/81/90a07e91ac71001a1f70833eb9ed7011 | 58 + .../.history/82/a01f19ebab71001a1f70833eb9ed7011 | 15 + .../.history/84/60e646ebab71001a1f70833eb9ed7011 | 36 + .../.history/84/90605393ac71001a1f70833eb9ed7011 | 26 + .../.history/84/d0d08493ac71001a1f70833eb9ed7011 | 22 + .../.history/85/3000b993ac71001a1f70833eb9ed7011 | 15 + .../.history/86/00212bebab71001a1f70833eb9ed7011 | 50 + .../.history/87/204e5deeab71001a1f70833eb9ed7011 | 26 + .../.history/87/60197593ac71001a1f70833eb9ed7011 | 15 + .../.history/88/d08b5193ac71001a1f70833eb9ed7011 | 15 + .../.history/8a/408f09ebab71001a1f70833eb9ed7011 | 58 + .../.history/8c/20eee3efab71001a1f70833eb9ed7011 | 204 + .../.history/8d/80b13f93ac71001a1f70833eb9ed7011 | 56 + .../.history/8d/901c0decab71001a1f70833eb9ed7011 | 104 + .../.history/8d/c0927393ac71001a1f70833eb9ed7011 | 26 + .../.history/8d/f0a623ebab71001a1f70833eb9ed7011 | 29 + .../.history/8e/200a1f93ac71001a1f70833eb9ed7011 | 26 + .../.history/8e/9017e7eeab71001a1f70833eb9ed7011 | 15 + .../.history/8e/d01c2debab71001a1f70833eb9ed7011 | 43 + .../.history/8f/70894aeeab71001a1f70833eb9ed7011 | 38 + .../.history/8f/90cdabecab71001a1f70833eb9ed7011 | 183 + .../.history/8f/e0adba93ac71001a1f70833eb9ed7011 | 26 + .../.history/90/60dc1c92ac71001a1f70833eb9ed7011 | 62 + .../.history/93/5099e1eeab71001a1f70833eb9ed7011 | 32 + .../.history/94/20b2edefab71001a1f70833eb9ed7011 | 56 + .../.history/94/40fa83ecab71001a1f70833eb9ed7011 | 43 + .../.history/94/f0e63494ac71001a1f70833eb9ed7011 | 204 + .../.history/95/10d97f91ac71001a1f70833eb9ed7011 | 36 + .../.history/95/205456efab71001a1f70833eb9ed7011 | 36 + .../.history/95/40eda491ac71001a1f70833eb9ed7011 | 29 + .../.history/96/e00b4eeeab71001a1f70833eb9ed7011 | 26 + .../.history/98/101f1593ac71001a1f70833eb9ed7011 | 38 + .../.history/99/f03521ebab71001a1f70833eb9ed7011 | 38 + .../.history/9a/60454493ac71001a1f70833eb9ed7011 | 15 + .../.history/9a/e0c96293ac71001a1f70833eb9ed7011 | 15 + .../.history/9a/f0495feeab71001a1f70833eb9ed7011 | 15 + .../.history/9c/80924feeab71001a1f70833eb9ed7011 | 15 + .../.history/a/40393394ac71001a1f70833eb9ed7011 | 188 + .../.history/a0/c0995d93ac71001a1f70833eb9ed7011 | 26 + .../.history/a0/f07b27efab71001a1f70833eb9ed7011 | 26 + .../.history/a1/c0ab62ebab71001a1f70833eb9ed7011 | 86 + .../.history/a2/90ed6aefab71001a1f70833eb9ed7011 | 44 + .../.history/a4/509f6d93ac71001a1f70833eb9ed7011 | 15 + .../.history/a4/606b87eeab71001a1f70833eb9ed7011 | 26 + .../.history/a5/d0555494ac71001a1f70833eb9ed7011 | 32 + .../.history/a6/d09a83eeab71001a1f70833eb9ed7011 | 44 + .../.history/a9/00631e92ac71001a1f70833eb9ed7011 | 57 + .../.history/a9/408135ebab71001a1f70833eb9ed7011 | 38 + .../.history/a9/b0692093ac71001a1f70833eb9ed7011 | 15 + .../.history/aa/b0f5d993ac71001a1f70833eb9ed7011 | 15 + .../.history/ab/302b93eeab71001a1f70833eb9ed7011 | 32 + .../.history/ab/d0af41eeab71001a1f70833eb9ed7011 | 50 + .../.history/ad/e0576beeab71001a1f70833eb9ed7011 | 32 + .../.history/ae/80c9aeeeab71001a1f70833eb9ed7011 | 32 + .../.history/af/507a13ebab71001a1f70833eb9ed7011 | 26 + .../.history/af/80f8c593ac71001a1f70833eb9ed7011 | 15 + .../.history/af/b0a51693ac71001a1f70833eb9ed7011 | 29 + .../.history/b/d07d7d93ac71001a1f70833eb9ed7011 | 15 + .../.history/b0/50457c93ac71001a1f70833eb9ed7011 | 26 + .../.history/b0/d0cbed93ac71001a1f70833eb9ed7011 | 36 + .../.history/b1/80754993ac71001a1f70833eb9ed7011 | 29 + .../.history/b2/50b245efab71001a1f70833eb9ed7011 | 44 + .../.history/b2/e0d4f293ac71001a1f70833eb9ed7011 | 36 + .../.history/b3/606ecf93ac71001a1f70833eb9ed7011 | 57 + .../.history/b3/80d52feeab71001a1f70833eb9ed7011 | 26 + .../.history/b6/a0ce64ebab71001a1f70833eb9ed7011 | 85 + .../.history/b6/e0d9f6efab71001a1f70833eb9ed7011 | 50 + .../.history/b7/701431ebab71001a1f70833eb9ed7011 | 15 + .../.history/b7/c041bf93ac71001a1f70833eb9ed7011 | 15 + .../.history/b7/f04275eeab71001a1f70833eb9ed7011 | 15 + .../.history/b8/a09d6feeab71001a1f70833eb9ed7011 | 26 + .../.history/b9/70f45793ac71001a1f70833eb9ed7011 | 15 + .../.history/ba/10309aeeab71001a1f70833eb9ed7011 | 32 + .../.history/ba/3080edeeab71001a1f70833eb9ed7011 | 26 + .../.history/bb/60fa84eeab71001a1f70833eb9ed7011 | 36 + .../.history/bc/b086b991ac71001a1f70833eb9ed7011 | 62 + .../.history/bf/d0291492ac71001a1f70833eb9ed7011 | 104 + .../.history/c/503e9293ac71001a1f70833eb9ed7011 | 22 + .../.history/c/a0a0b793ac71001a1f70833eb9ed7011 | 26 + .../.history/c0/308331eeab71001a1f70833eb9ed7011 | 15 + .../.history/c2/100278eeab71001a1f70833eb9ed7011 | 26 + .../.history/c3/700730efab71001a1f70833eb9ed7011 | 15 + .../.history/c3/b0e53debab71001a1f70833eb9ed7011 | 29 + .../.history/c5/e0d98993ac71001a1f70833eb9ed7011 | 32 + .../.history/c6/706e04f0ab71001a1f70833eb9ed7011 | 22 + .../.history/c6/b08da391ac71001a1f70833eb9ed7011 | 38 + .../.history/c6/c02c9091ac71001a1f70833eb9ed7011 | 38 + .../.history/c6/f0504d94ac71001a1f70833eb9ed7011 | 38 + .../.history/c8/209dc293ac71001a1f70833eb9ed7011 | 15 + .../.history/cb/30b93293ac71001a1f70833eb9ed7011 | 15 + .../.history/cb/f010b193ac71001a1f70833eb9ed7011 | 26 + .../.history/cc/60ae67eeab71001a1f70833eb9ed7011 | 15 + .../.history/cd/d05d9cefab71001a1f70833eb9ed7011 | 26 + .../.history/ce/d0a7f992ac71001a1f70833eb9ed7011 | 632 +++ .../.history/cf/10b06593ac71001a1f70833eb9ed7011 | 32 + .../.history/cf/805b8391ac71001a1f70833eb9ed7011 | 32 + .../.history/cf/a0a20a94ac71001a1f70833eb9ed7011 | 26 + .../.history/d/303714eeab71001a1f70833eb9ed7011 | 29 + .../.history/d/b09be893ac71001a1f70833eb9ed7011 | 15 + .../.history/d/c03ad593ac71001a1f70833eb9ed7011 | 32 + .../.history/d0/10d111efab71001a1f70833eb9ed7011 | 57 + .../.history/d0/905d0f94ac71001a1f70833eb9ed7011 | 15 + .../.history/d2/d0fdb1eeab71001a1f70833eb9ed7011 | 22 + .../.history/d3/00b1fbeeab71001a1f70833eb9ed7011 | 26 + .../.history/d4/90a9bb91ac71001a1f70833eb9ed7011 | 57 + .../.history/d5/80993d94ac71001a1f70833eb9ed7011 | 56 + .../.history/d5/f098c493ac71001a1f70833eb9ed7011 | 26 + .../.history/d6/208ef9eeab71001a1f70833eb9ed7011 | 15 + .../.history/d7/f00015ebab71001a1f70833eb9ed7011 | 15 + .../.history/d9/40718393ac71001a1f70833eb9ed7011 | 32 + .../.history/da/406e3beeab71001a1f70833eb9ed7011 | 56 + .../.history/da/70ea25eeab71001a1f70833eb9ed7011 | 15 + .../.history/da/a074afe1ab71001a1f70833eb9ed7011 | 810 +++ .../.history/da/b0b28891ac71001a1f70833eb9ed7011 | 15 + .../.history/db/101cd193ac71001a1f70833eb9ed7011 | 26 + .../.history/db/4073d693ac71001a1f70833eb9ed7011 | 22 + .../.history/db/f030ff93ac71001a1f70833eb9ed7011 | 44 + .../.history/db/f05eb091ac71001a1f70833eb9ed7011 | 36 + .../.history/dc/a08bf993ac71001a1f70833eb9ed7011 | 43 + .../.history/de/a01145ebab71001a1f70833eb9ed7011 | 44 + .../.history/df/4036ebeeab71001a1f70833eb9ed7011 | 15 + .../.history/df/a01c46eeab71001a1f70833eb9ed7011 | 15 + .../.history/e/8070b293ac71001a1f70833eb9ed7011 | 15 + .../.history/e/90340febab71001a1f70833eb9ed7011 | 32 + .../.history/e/f090e5eeab71001a1f70833eb9ed7011 | 26 + .../.history/e1/30bdd893ac71001a1f70833eb9ed7011 | 26 + .../.history/e1/e016deeeab71001a1f70833eb9ed7011 | 22 + .../.history/e4/009917ebab71001a1f70833eb9ed7011 | 26 + .../.history/e5/d0dd6794ac71001a1f70833eb9ed7011 | 866 ++++ .../.history/e6/106353eeab71001a1f70833eb9ed7011 | 15 + .../.history/e6/40701decab71001a1f70833eb9ed7011 | 57 + .../.history/e7/10d455eeab71001a1f70833eb9ed7011 | 26 + .../.history/e7/402b5beeab71001a1f70833eb9ed7011 | 15 + .../.history/e7/8067e2efab71001a1f70833eb9ed7011 | 188 + .../.history/e7/90d58a91ac71001a1f70833eb9ed7011 | 26 + .../.history/e8/805d4794ac71001a1f70833eb9ed7011 | 50 + .../.history/e8/909a63efab71001a1f70833eb9ed7011 | 43 + .../.history/e8/b00066eeab71001a1f70833eb9ed7011 | 26 + .../.history/e9/90bee6edab71001a1f70833eb9ed7011 | 722 +++ .../.history/e9/b005fdedab71001a1f70833eb9ed7011 | 62 + .../.history/eb/70690094ac71001a1f70833eb9ed7011 | 36 + .../.history/ec/e004f3ebab71001a1f70833eb9ed7011 | 410 ++ .../.history/ec/e0efa5eeab71001a1f70833eb9ed7011 | 22 + .../.history/ed/20acf4eeab71001a1f70833eb9ed7011 | 15 + .../.history/ee/4008c9eeab71001a1f70833eb9ed7011 | 32 + .../.history/ee/f02db7eeab71001a1f70833eb9ed7011 | 22 + .../.history/f/b0bfd8eeab71001a1f70833eb9ed7011 | 22 + .../.history/f0/50bd6893ac71001a1f70833eb9ed7011 | 26 + .../.history/f0/f0479f91ac71001a1f70833eb9ed7011 | 15 + .../.history/f1/90e86693ac71001a1f70833eb9ed7011 | 22 + .../.history/f4/50919993ac71001a1f70833eb9ed7011 | 32 + .../.history/f6/100e8c91ac71001a1f70833eb9ed7011 | 15 + .../.history/f6/90b012eeab71001a1f70833eb9ed7011 | 38 + .../.history/f7/70aa8d93ac71001a1f70833eb9ed7011 | 32 + .../.history/f7/b0803193ac71001a1f70833eb9ed7011 | 26 + .../.history/f8/00381ef0ab71001a1f70833eb9ed7011 | 866 ++++ .../.history/f8/9054d293ac71001a1f70833eb9ed7011 | 15 + .../.history/f8/a03357eeab71001a1f70833eb9ed7011 | 15 + .../.history/f9/30a90b93ac71001a1f70833eb9ed7011 | 57 + .../.history/fa/d08809eeab71001a1f70833eb9ed7011 | 38 + .../.history/fa/d0dd63eeab71001a1f70833eb9ed7011 | 15 + .../.history/fb/e0ebffedab71001a1f70833eb9ed7011 | 57 + .../.history/fc/300b4994ac71001a1f70833eb9ed7011 | 43 + .../.history/fc/60c070ecab71001a1f70833eb9ed7011 | 162 + .../.history/fc/c03f6c93ac71001a1f70833eb9ed7011 | 26 + .../.history/fe/60094e93ac71001a1f70833eb9ed7011 | 15 + .../.history/fe/f0042ceeab71001a1f70833eb9ed7011 | 38 + .../Embedded/.indexes/33/4a/f5/26/history.index | Bin 3026 -> 3122 bytes .../Embedded/.indexes/33/4a/f5/34/history.index | Bin 3058 -> 3154 bytes .../Embedded/.indexes/33/4a/f5/3f/history.index | Bin 3052 -> 3148 bytes .../Embedded/.indexes/33/4a/f5/65/history.index | Bin 3032 -> 3128 bytes .../Embedded/.indexes/33/4a/f5/8/history.index | Bin 3038 -> 3134 bytes .../Embedded/.indexes/33/4a/f5/8c/history.index | Bin 3044 -> 3140 bytes .../Embedded/.indexes/33/4a/f5/b/history.index | Bin 3034 -> 3130 bytes .../Embedded/.indexes/33/4a/f5/b2/history.index | Bin 3048 -> 3144 bytes .../Embedded/.indexes/33/4a/f5/cb/history.index | Bin 3038 -> 3134 bytes .../Embedded/.indexes/33/4a/f5/ce/history.index | Bin 3040 -> 3136 bytes .../Embedded/.indexes/33/4a/f5/e5/history.index | Bin 3032 -> 3128 bytes .../Embedded/.indexes/33/4a/f5/f9/history.index | Bin 3048 -> 3144 bytes .../Embedded/.indexes/33/4a/f5/fe/history.index | Bin 3042 -> 3138 bytes .../Embedded/.indexes/33/4a/history.index | Bin 3012 -> 3108 bytes .../Embedded/.indexes/33/99/36/history.index | Bin 3028 -> 3124 bytes .../Embedded/.indexes/33/99/50/history.index | Bin 3028 -> 3124 bytes .../Embedded/.indexes/33/99/8c/history.index | Bin 3024 -> 3120 bytes .../Embedded/.indexes/33/99/98/history.index | Bin 3008 -> 3104 bytes .../Embedded/.indexes/33/99/aa/history.index | Bin 3016 -> 3112 bytes .../Embedded/.indexes/33/99/c3/history.index | Bin 3016 -> 3112 bytes .../Embedded/.indexes/33/99/c8/history.index | Bin 3016 -> 3112 bytes .../Embedded/.indexes/33/99/d6/history.index | Bin 6017 -> 6209 bytes .../Embedded/.indexes/33/99/fa/history.index | Bin 3012 -> 3108 bytes .../Embedded/.indexes/33/9d/c0/history.index | Bin 3042 -> 3138 bytes .../Embedded/.indexes/33/9d/cb/history.index | Bin 3030 -> 3126 bytes .../Embedded/.indexes/33/b/16/history.index | Bin 3018 -> 3114 bytes .../Embedded/.indexes/33/b/37/history.index | Bin 3014 -> 3110 bytes .../Embedded/.indexes/33/b/4a/history.index | Bin 3034 -> 3130 bytes .../Embedded/.indexes/33/b/4d/history.index | Bin 3016 -> 3112 bytes .../Embedded/.indexes/33/b/5f/history.index | Bin 3020 -> 3116 bytes .../Embedded/.indexes/33/b/c4/history.index | Bin 3024 -> 3120 bytes .../Embedded/.indexes/33/b/cc/history.index | Bin 3012 -> 3108 bytes .../Embedded/.indexes/33/d5/1a/history.index | Bin 3026 -> 3122 bytes .../Embedded/.indexes/33/d5/23/a2/51/history.index | Bin 1510 -> 1606 bytes .../Embedded/.indexes/33/d5/23/a2/65/history.index | Bin 2766 -> 2862 bytes .../Embedded/.indexes/33/d5/23/a2/73/history.index | Bin 2754 -> 2850 bytes .../Embedded/.indexes/33/d5/23/a2/history.index | Bin 3034 -> 3130 bytes .../Embedded/.indexes/33/d5/23/b5/history.index | Bin 3038 -> 3134 bytes .../Embedded/.indexes/33/d5/23/history.index | Bin 3020 -> 3116 bytes .../Embedded/.indexes/33/d5/24/6b/history.index | Bin 3042 -> 3138 bytes .../Embedded/.indexes/33/d5/24/a/history.index | Bin 3030 -> 3126 bytes .../Embedded/.indexes/33/d5/24/de/b8/history.index | Bin 3042 -> 3138 bytes .../Embedded/.indexes/33/d5/24/de/history.index | Bin 3028 -> 3124 bytes .../Embedded/.indexes/33/d5/24/e9/history.index | Bin 3038 -> 3134 bytes .../Embedded/.indexes/33/d5/24/history.index | Bin 3010 -> 3106 bytes .../Embedded/.indexes/33/d5/42/history.index | Bin 3014 -> 3110 bytes .../Embedded/.indexes/33/d5/43/history.index | Bin 3014 -> 3110 bytes .../Embedded/.indexes/33/d5/70/86/history.index | Bin 3038 -> 3134 bytes .../Embedded/.indexes/33/d5/70/history.index | Bin 3026 -> 3122 bytes .../Embedded/.indexes/33/d5/83/history.index | Bin 3028 -> 3124 bytes .../Embedded/.indexes/33/d5/8c/history.index | Bin 3008 -> 3104 bytes .../Embedded/.indexes/33/d5/91/53/0/history.index | Bin 3068 -> 3164 bytes .../Embedded/.indexes/33/d5/91/53/29/history.index | Bin 3082 -> 3178 bytes .../Embedded/.indexes/33/d5/91/53/51/history.index | Bin 3084 -> 3180 bytes .../Embedded/.indexes/33/d5/91/53/7e/history.index | Bin 3106 -> 3202 bytes .../Embedded/.indexes/33/d5/91/53/87/history.index | Bin 3090 -> 3186 bytes .../Embedded/.indexes/33/d5/91/53/94/history.index | Bin 3096 -> 3192 bytes .../Embedded/.indexes/33/d5/91/53/96/history.index | Bin 3084 -> 3180 bytes .../Embedded/.indexes/33/d5/91/53/bd/history.index | Bin 3090 -> 3186 bytes .../Embedded/.indexes/33/d5/91/53/history.index | Bin 3054 -> 3150 bytes .../Embedded/.indexes/33/d5/91/66/0/history.index | Bin 3080 -> 3176 bytes .../Embedded/.indexes/33/d5/91/66/67/history.index | Bin 3084 -> 3180 bytes .../Embedded/.indexes/33/d5/91/66/history.index | Bin 6105 -> 6297 bytes .../Embedded/.indexes/33/d5/91/8f/history.index | Bin 3052 -> 3148 bytes .../Embedded/.indexes/33/d5/91/9b/72/history.index | Bin 3072 -> 3168 bytes .../Embedded/.indexes/33/d5/91/9b/history.index | Bin 3054 -> 3150 bytes .../Embedded/.indexes/33/d5/91/af/history.index | Bin 3054 -> 3150 bytes .../Embedded/.indexes/33/d5/91/c1/history.index | Bin 3072 -> 3168 bytes .../Embedded/.indexes/33/d5/91/f/0/history.index | Bin 3070 -> 3166 bytes .../.indexes/33/d5/91/f/67/aa/history.index | Bin 3090 -> 3186 bytes .../Embedded/.indexes/33/d5/91/f/67/history.index | Bin 3074 -> 3170 bytes .../Embedded/.indexes/33/d5/91/f/6d/history.index | Bin 3068 -> 3164 bytes .../Embedded/.indexes/33/d5/91/f/80/history.index | Bin 3064 -> 3160 bytes .../Embedded/.indexes/33/d5/91/f/f3/history.index | Bin 3064 -> 3160 bytes .../Embedded/.indexes/33/d5/91/f/history.index | Bin 3056 -> 3152 bytes .../Embedded/.indexes/33/d5/91/history.index | Bin 3036 -> 3132 bytes .../Embedded/.indexes/33/d5/b1/history.index | Bin 3020 -> 3116 bytes .../Embedded/.indexes/33/d5/c2/3f/history.index | Bin 3032 -> 3128 bytes .../Embedded/.indexes/33/d5/c2/f2/history.index | Bin 3044 -> 3140 bytes .../Embedded/.indexes/33/d5/c2/history.index | Bin 3018 -> 3114 bytes .../Embedded/.indexes/33/d5/e5/history.index | Bin 3036 -> 3132 bytes .../Embedded/.indexes/33/d5/fd/history.index | Bin 3014 -> 3110 bytes .../.projects/Embedded/.indexes/33/history.index | Bin 6261 -> 6477 bytes .../Embedded/.indexes/99/50/history.index | Bin 138 -> 186 bytes .../Embedded/.indexes/d5/91/c1/properties.index | Bin 0 -> 176 bytes .../.projects/Embedded/.markers.snap | Bin 185664 -> 274290 bytes .../.projects/Embedded/.syncinfo.snap | Bin 96 -> 128 bytes .../.projects/RemoteSystemsTempFiles/.markers.snap | Bin 96 -> 128 bytes .../RemoteSystemsTempFiles/.syncinfo.snap | Bin 96 -> 128 bytes .../org.eclipse.core.resources/.root/.markers.snap | Bin 96 -> 128 bytes .../.safetable/org.eclipse.core.resources | Bin 2389 -> 2959 bytes .../.plugins/org.eclipse.core.resources/54.snap | Bin 62766 -> 73423 bytes .../org.eclipse.e4.workbench/workbench.xmi | 5447 ++++++++++---------- .../Embedded/Modules/Stubs_Handler/Progress.c | 3 + 440 files changed, 23713 insertions(+), 2678 deletions(-) create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/b0871b93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/203f98efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/908c2293ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/000403efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/503d3092ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/30acbceeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/50f95e93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/101989eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/a0062a93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/a074e4edab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/102c8791ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/100b4892ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/30055093ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/5093ec93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/60ffae91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/b0279eeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/e0b42febab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/40f05993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/d0d679eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/201df7eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/20e879ecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/206fa093ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/70d150ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/d0957becab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/60984b93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/e0765b93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/70b102ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/d0a4b593ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/503ff0eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/405639efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/60e55992ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/80608b93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/e00c4393ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/f0659a91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/f05e1deeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/60b55594ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/a0a7a193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/10d20694ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/604a48efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/a0840beeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/30ae0fefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/9025bbeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/a021e193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/00f90592ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/304f1a93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/90f97e92ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/50cdfcefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/601ff9ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/70d06392ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/40c73befab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/006c5b92ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/30e2bd93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/a05061efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/601196eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/f00ba991ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/a02c6deeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/50b7dceeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/204d6cefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/c0207ceeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/904c82ecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/d0a3c0eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/f06e44eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/a0b22deeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/d07ac891ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/c0c77f93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/208025efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/80c00492ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/309fdd93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/10c33defab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/700f9e91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/80c071eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/503effefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/80ab42ecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/a0310894ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/00e94beeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/a0c59c93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/809b1becab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/806baa91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/9088e9eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/90c46eecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/30691c8bac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/60c91eefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/e0945693ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/500911ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/506b5292ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/d0f81aefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/f0154893ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/70efc093ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/404c9e93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/508c9191ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/20e100efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/801035efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/e0706292ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/30f18292ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/8025f3eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/4045b493ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/b0a00aebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/20f6beeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/505854efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/1015e793ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/10b1c3eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/20914194ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/4069a4eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/40fe2d93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/40bcabeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/a0e57991ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/e05010ecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/70fc9feeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/b0c815efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/d007e493ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/107d37ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/60e6bb93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/5040e593ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/70ce7deeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/60d69493ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/104214efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/30867993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/209b6f93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/403a2493ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/a07202f0ab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/10362693ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/d089fe92ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/f01fe3eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/d06324eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/80b04e94ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/803ba693ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/d0ce9eefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c048a993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c0a29a93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/f0436a93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/204b19efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/601b53ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/80f923efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/c0dd9beeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/0005f893ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/10114193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/10eeae93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/00151beeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/506719eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/b05efdeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/7039f8efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/e035ce93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/f0c33192ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/30098591ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/80d71592ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/c066a493ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/d05d2f93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/e086efefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/000a8f93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/d0ec99efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/f073df93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/b0af40ecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/e06f7193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/4081aa93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c0421defab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/f08f8793ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/30d98093ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/c0e57a93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/105f3cebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/e02c9193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70dc51eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/f0ba61eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/5075f193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/6040ad93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/709e9b91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/70578693ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/805659eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/e0acc5eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/30380993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/3059b5eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/20c05493ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/50b3c991ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/301c6193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/706e9793ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a03fdc93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/e01922eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/50bc73eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/900eaaeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/a083a9ecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/90a07e91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/a01f19ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/60e646ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/90605393ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/d0d08493ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/3000b993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/00212bebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/204e5deeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60197593ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/d08b5193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/408f09ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/20eee3efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/80b13f93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/901c0decab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/c0927393ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/f0a623ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/200a1f93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/9017e7eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/d01c2debab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/70894aeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/90cdabecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/e0adba93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/60dc1c92ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/5099e1eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20b2edefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/40fa83ecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/f0e63494ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/10d97f91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/205456efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/40eda491ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/e00b4eeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/101f1593ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/f03521ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/60454493ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/e0c96293ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0495feeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/80924feeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/40393394ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/c0995d93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/f07b27efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/c0ab62ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/90ed6aefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/509f6d93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/606b87eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/d0555494ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/d09a83eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/00631e92ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/408135ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/b0692093ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/b0f5d993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/302b93eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/d0af41eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/e0576beeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/80c9aeeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/507a13ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/80f8c593ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/b0a51693ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/d07d7d93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/50457c93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/d0cbed93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/80754993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/50b245efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/e0d4f293ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/606ecf93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/80d52feeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/a0ce64ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/e0d9f6efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/701431ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/c041bf93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/f04275eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/a09d6feeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/70f45793ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/10309aeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/3080edeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/60fa84eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/b086b991ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/d0291492ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/503e9293ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/a0a0b793ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/308331eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/100278eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/700730efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/b0e53debab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/e0d98993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/706e04f0ab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/b08da391ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/c02c9091ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0504d94ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/209dc293ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30b93293ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f010b193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/60ae67eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/d05d9cefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/d0a7f992ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/10b06593ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/805b8391ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/a0a20a94ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/303714eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/b09be893ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/c03ad593ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/10d111efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/905d0f94ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/d0fdb1eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/00b1fbeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90a9bb91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/80993d94ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/f098c493ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/208ef9eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/f00015ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/40718393ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/406e3beeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/70ea25eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/a074afe1ab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/b0b28891ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/101cd193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/4073d693ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f030ff93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f05eb091ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/a08bf993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/a01145ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/4036ebeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/a01c46eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/8070b293ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/90340febab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/f090e5eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/30bdd893ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/e016deeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/009917ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/d0dd6794ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/106353eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/40701decab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/10d455eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/402b5beeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/8067e2efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/90d58a91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/805d4794ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/909a63efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/b00066eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/90bee6edab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/b005fdedab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/70690094ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e004f3ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e0efa5eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/20acf4eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/4008c9eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/f02db7eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/b0bfd8eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/50bd6893ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/f0479f91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/90e86693ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/50919993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/100e8c91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/90b012eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/70aa8d93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/b0803193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/00381ef0ab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/9054d293ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/a03357eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/30a90b93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/d08809eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/d0dd63eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/e0ebffedab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/300b4994ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/60c070ecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/c03f6c93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/60094e93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/f0042ceeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/91/c1/properties.index (limited to 'Software/Embedded_SW/Embedded/Modules') diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/b0871b93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/b0871b93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/b0871b93ac71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/203f98efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/203f98efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/203f98efab71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/908c2293ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/908c2293ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/908c2293ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/000403efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/000403efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/000403efab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/503d3092ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/503d3092ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/503d3092ac71001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/30acbceeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/30acbceeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/30acbceeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/50f95e93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/50f95e93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/50f95e93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/101989eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/101989eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/101989eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/a0062a93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/a0062a93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/a0062a93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/a074e4edab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/a074e4edab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/a074e4edab71001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/102c8791ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/102c8791ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/102c8791ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/100b4892ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/100b4892ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/100b4892ac71001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/30055093ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/30055093ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/30055093ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/5093ec93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/5093ec93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/5093ec93ac71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/60ffae91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/60ffae91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/60ffae91ac71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/b0279eeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/b0279eeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/b0279eeeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/e0b42febab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/e0b42febab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/e0b42febab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/40f05993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/40f05993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/40f05993ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/d0d679eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/d0d679eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/d0d679eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/201df7eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/201df7eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/201df7eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/20e879ecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/20e879ecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/20e879ecab71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/206fa093ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/206fa093ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/206fa093ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/70d150ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/70d150ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/70d150ebab71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/d0957becab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/d0957becab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/d0957becab71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/60984b93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/60984b93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/60984b93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/e0765b93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/e0765b93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/e0765b93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/70b102ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/70b102ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/70b102ebab71001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/d0a4b593ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/d0a4b593ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/d0a4b593ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/503ff0eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/503ff0eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/503ff0eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/405639efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/405639efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/405639efab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/60e55992ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/60e55992ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/60e55992ac71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/80608b93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/80608b93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/80608b93ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/e00c4393ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/e00c4393ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/e00c4393ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/f0659a91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/f0659a91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/f0659a91ac71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/f05e1deeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/f05e1deeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/f05e1deeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/60b55594ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/60b55594ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/60b55594ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/a0a7a193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/a0a7a193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/a0a7a193ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/10d20694ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/10d20694ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/10d20694ac71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/604a48efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/604a48efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/604a48efab71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/a0840beeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/a0840beeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/a0840beeab71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/30ae0fefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/30ae0fefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/30ae0fefab71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/9025bbeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/9025bbeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/9025bbeeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/a021e193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/a021e193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/a021e193ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/00f90592ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/00f90592ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/00f90592ac71001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/304f1a93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/304f1a93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/304f1a93ac71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/90f97e92ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/90f97e92ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/90f97e92ac71001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/50cdfcefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/50cdfcefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/50cdfcefab71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/601ff9ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/601ff9ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/601ff9ebab71001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/70d06392ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/70d06392ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/70d06392ac71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/40c73befab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/40c73befab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/40c73befab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/006c5b92ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/006c5b92ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/006c5b92ac71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/30e2bd93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/30e2bd93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/30e2bd93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/a05061efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/a05061efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/a05061efab71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/601196eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/601196eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/601196eeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/f00ba991ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/f00ba991ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/f00ba991ac71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/a02c6deeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/a02c6deeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/a02c6deeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/50b7dceeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/50b7dceeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/50b7dceeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/204d6cefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/204d6cefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/204d6cefab71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/c0207ceeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/c0207ceeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/c0207ceeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/904c82ecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/904c82ecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/904c82ecab71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/d0a3c0eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/d0a3c0eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/d0a3c0eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/f06e44eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/f06e44eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/f06e44eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/a0b22deeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/a0b22deeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/a0b22deeab71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/d07ac891ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/d07ac891ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/d07ac891ac71001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/c0c77f93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/c0c77f93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/c0c77f93ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/208025efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/208025efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/208025efab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/80c00492ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/80c00492ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/80c00492ac71001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/309fdd93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/309fdd93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/309fdd93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/10c33defab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/10c33defab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/10c33defab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/700f9e91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/700f9e91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/700f9e91ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/80c071eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/80c071eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/80c071eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/503effefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/503effefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/503effefab71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/80ab42ecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/80ab42ecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/80ab42ecab71001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/a0310894ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/a0310894ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/a0310894ac71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/00e94beeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/00e94beeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/00e94beeab71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/a0c59c93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/a0c59c93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/a0c59c93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/809b1becab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/809b1becab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/809b1becab71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/806baa91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/806baa91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/806baa91ac71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/9088e9eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/9088e9eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/9088e9eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/90c46eecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/90c46eecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/90c46eecab71001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/30691c8bac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/30691c8bac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..71c419f0d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/30691c8bac71001a1f70833eb9ed7011 @@ -0,0 +1,813 @@ + +#include +#include +#include +#include +#include "include.h" +#include "driverlib/gpio.h" + +#include "Communication/Connection.h" + +#include "Drivers/USB_Communication/USBCDCD.h" +#include "StateMachines/Initialization/PowerOffSequence.h" +#include "StateMachines/Initialization/PowerIdle.h" + +#include "drivers/Flash_Memory/FATFS/ff.h" +#include "drivers/Flash_Memory/FATFS/Control_File_System.h" +#include "drivers/Flash_ram/FlashProgram.h" +#include "drivers/adc_sampling/adc.h" +#include "drivers/Heater/TemperatureSensor.h" +#include "drivers/ADC_Sampling/adc.h" +#include "drivers/Flash_ram/MCU_E2Prom.h" +#include "Drivers/SSI_Comm/Dancer/Dancer.h" + +#include "Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/fan_click.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.h" +#include "drivers/Motors/Motor.h" +#include "drivers/FPGA/FPGA_SPI_Comm.h" +#include "Modules/IFS/ifs.h" +#include "Modules/IDS/ids_ex.h" +#include "Modules/Control/MillisecTask.h" +#include "modules/thread/thread_ex.h" +#include "modules/heaters/heaters_ex.h" +#include +#include +#include "Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.h" +#include "drivers/adc_sampling/adc.h" +#include +#include +#include +#include +#include +#include +#include + + +#include "Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.h" + + + +extern float NumberOfRotationPerPassage; // how many rotations per spool passage + +//#include "graphics_adapter.h" +extern uint8_t Input_Voltage; +extern uint8_t Test_Read_Buf[4]; + +extern uint8_t Head_Fan_PWM_Command[2]; +extern uint16_t Head_Fan_Tach[2]; + +void Stub_ProgressRequest(MessageContainer* requestContainer) +{ + MessageContainer responseContainer; + + ProgressRequest* request = progress_request__unpack(NULL, requestContainer->data.len, requestContainer->data.data); + + //writeLine("Progress Request..."); + + ProgressResponse response = PROGRESS_RESPONSE__INIT; + +// uint8_t high_byte = 0; +// uint8_t low_byte = 0; + + uint8_t addr = 0; + uint8_t port = 0; + uint8_t pin = 0; + uint8_t value= 0; + + if(request->amount == 0x3E9) // set TCA9555 u3 or u4 + { + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay & 0x8000) // bit15 select the chip address + { + addr = I2CExp2_ADDRESS; + } + else + { + addr = I2CExp1_ADDRESS; + } + + if (request->delay & 0x4000) // bit 14 select port 0 or 1 + { + port = D_TCA9555_PORT_1; + } + else + { + port = D_TCA9555_PORT_0; + } + + pin = ((request->delay & 0x0F00) >> 8); // 8..11 + + if (request->delay & 0x0001) + { + value = 1; + } + else + { + value = 0; + } + response.progress = Write_WHS_9555_io_value( addr, port, pin, value); + response.has_progress = true; + } + } + else + if(request->amount == 0x3E8) //&& (request->delay <= 0x0fff))// set WHS Blower speed 0x00-0xfff + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_enable_control_loop( request->delay & 0x1000);//disable control loop: 0=disable 1= enable + Trigger_SetWHSBlowerVoltage (request->delay & 0x0FFF); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E7) // set WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_Set_SetPoint_Q_value((double) request->delay); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E6) // get WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + response.progress = WHS_Get_Volt_Blower_Control(); + //response.progress = 0; + response.has_progress = true; + } + } + // WHS_Get_Volt_Blower_Control + else + if(request->amount == 0x3EA) + { + uint16_t tempu16 = 0; + double temp_double = 0.0; + uint8_t display_byte = 0; + uint16_t A2D_data = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + display_byte = ((request->delay & 0x3000)>>12); + switch (display_byte) + { + case 0: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x0000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(DrierAVERAGE); + break; + case 1: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x1000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(HeadCURRENT); + break; + case 2: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x2000); // + SetLeftDisplayView (DrierAVERAGE); + SetWriteDisplayView(DrierCURRENT); + break; + case 3: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x3000); // + SetLeftDisplayView (HeadCURRENT); + SetWriteDisplayView(DrierCURRENT); + break; + } + + A2D_data = (request->delay & 0x0FFF); + switch(A2D_data )// get A2D + { + case 0: + get_orf_1(&tempu16); + break; + case 1: + get_orf_2(&tempu16); + break; + case 2: + get_orf_3(&tempu16); + break; + case 3: + get_vlev1(&tempu16); + break; + case 4: + get_vlev2(&tempu16); + break; + case 5: + get_gas_out(&tempu16); + break; + case 6: + get_cur_fan(&tempu16); + break; + case 7: + get_cur_vlv1(&tempu16); + break; + case 8: + tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + case 10: + temp_double = get_Q(HEAD_FLOW_METER); + break; + case 12: + temp_double = get_Q(DRIER_FLOW_METER); + break; + case 20: + temp_double = get_average_Q(HEAD_FLOW_METER); //HEAD + break; + case 22: + temp_double = get_average_Q(DRIER_FLOW_METER); //Drier + break; + + case 11: + //get_orf_2(&tempu16); + break; + case 13: + //get_vlev1(&tempu16); + break; + case 14: + //get_vlev2(&tempu16); + break; + case 15: + //get_gas_out(&tempu16); + break; + case 16: + //get_cur_fan(&tempu16); + break; + case 17: + //get_cur_vlv1(&tempu16); + break; + case 18: + //tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + default : + tempu16 = 0x500; //get_cur_vlv2(&tempu16); + break; + } + } + if ((request->delay)<10) + { + response.progress = (double)tempu16; + } + else + { + response.progress = temp_double; + } + response.has_progress = true; + } + else // + if(request->amount == 0x3EB) + { + uint16_t tempu16 = 0; + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay <= 0x03FF) + { + Trigger_WHS_Set_RDAC(request->delay); // 0 -> 0x03FF + } + else + { + //Trigger_WHS_set_Rheostat_to_CLEAN_AIR(); + } + get_gas_out(&tempu16); + } + response.progress = (double)tempu16; + response.has_progress = true; + } + else + if((request->amount == 0xDE) && (request->delay < 8) && (request->delay >= 0)) // read dispenser type + LS status + { + response.progress = ((Dispenser_struct[request->delay].Type) << 8) + Dispenser_struct[request->delay].Status; + response.has_progress = true; + } + else + if(request->amount == 0xAD) //undef AUTO_HOME_DISPENSERS + { + if ((request->delay >=AutoHoming_off )&&(request->delay<=AutoHoming_JobEnd_PowerOn_off )) + IDS_Dispenser_SetAutoHoming_Config(request->delay); + response.progress = 01; + response.has_progress = true; + } + else + if(request->amount == 0xAD1) //Set_Check_Pressure_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Check_Pressure_Bypass"); + response.progress = Set_Check_Pressure_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD2) //Set_Thread_Rockers_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Thread_Rockers_Bypass"); + response.progress = Set_Thread_Rockers_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD3) //Set_Auto_Shutdown_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Shutdown_Bypass"); + response.progress = Set_Auto_Shutdown_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD4) //Set_Auto_Idle_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Idle_Bypass"); + response.progress = Set_Auto_Idle_Bypass(request->delay); + response.has_progress = true; + } + else + if((request->amount == 0x01) && ((request->delay &0x010000) == 0x010000)) //change mode powerset01 + { + response.progress = Power_Step_01_Mode(((request->delay &0x00FF00)>>8), request->delay &0x0000FF); + response.has_progress = true; + } + else + if((request->amount == 0xAB) && (request->delay == 0xAB)) //Get pressure with flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(true); + response.has_progress = true; + + } + else + if((request->amount == 0xAB) && (request->delay == 0x0)) //measured sensor voltage without flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(false); + response.has_progress = true; + + } + else + if((request->amount == 0xAC) && (request->delay == 0xAC)) //VAC + { + response.progress = ReadVAC(); + response.has_progress = true; + + } + else + if(request->amount == 0x0EAD) //Head Card I/O read only!!!! + { + uint8_t Read_Buf[1] = {0}; + uint8_t Write_Buf[2] = {0,0}; + uint8_t Script_Slave_Add = request -> delay >> 16;//Slave address 0x40 / 0x42 / 0x44 / 0x46 + Write_Buf[0] = (request -> delay & 0x00FF00) >> 8;//read/write low/high + /* + ------------------ + | Byte | WR | RD | + ------------------ + | Low | 02 | 00 | + | High | 03 | 01 | + ------------------ + */ + Write_Buf[1] = request -> delay & 0x0000FF;//data to write + + response.has_progress = false; + + Select_Main_Head_Mux_Channel(); + + if(Write_Buf[0] == 0)//Read + { + //Head_Read_IO_Reg(Script_Slave_Add, LOW); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46) + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + + if(Write_Buf[0] == 1)//Read + { + //Head_Read_IO_Reg(Script_Slave_Add, HIGH); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46)//LS + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + /* + if(Write_Buf[0] == 2)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + Head_I2C_EXP2_0x42.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); + } + + //Head_Write_IO_Reg(Script_Slave_Add, LOW); + } + if(Write_Buf[0] == 3)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[1] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + //Head_I2C_EXP2_0x42.uchar[1] = Write_Buf[1]; + Head_I2C_EXP2_0x42.bits.OUTPUT_MAG_DIR = (Write_Buf[1] & 0x01);//control only the magnet + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP3_0x44.uchar[1] = (Write_Buf[1] & 0x0C); + } + //Head_Write_IO_Reg(Script_Slave_Add, HIGH); + } + */ + if(Write_Buf[0] >=0xF0) + { + // write , Write_Buf[0] bit number 0..15 , Write_Buf[1] 0 or 1 + Write_Buf[1] = Write_Buf[1] & 0x01; + + Write_Buf[0] &=0x0f; + + if(Script_Slave_Add == 0x40) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP1_0x40.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP1_0x40.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x42) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP2_0x42.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP2_0x42.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); + + if(Write_Buf[1] == 0x01) + Head_I2C_EXP4_0x46.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP4_0x46.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + } + } + else + if(request->amount == 0xFEAD) //functions Head Card I/O + { + Select_Main_Head_Mux_Channel(); + + if((request -> delay & 0xFFF000) == 0xCAF000)//Actuator + { + //HeadCard_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), /*(bool)((request -> delay & 0x10)>>4), */(bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + Trigger_Head_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), (bool)((request -> delay & 0x10)>>4), (bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + //response.progress = HeadCard_Actuators_Status((ACTUATORS)((request -> delay) & 0x100)>>8); + response.has_progress = true; + } + else + if((request -> delay & 0xFF0000) == 0xCA0000)//control all heaters + { + if(request -> delay & 0x01) + { + Disconnect_Mixer_and_12_Heaters_Latch(); + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, TRUE); + Connect_Mixer_and_12_Heaters_Latch(); + } + else + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, FALSE); + } + else + if(request -> delay == 0x0)//return head type + { + response.progress = Head_Type; + response.has_progress = true; + } + + } + else + if((request->amount == 0xFAC0) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + //Head_Fan_PWM_Command[0] = (request->delay & 0xFF) ; + //Test_Head_fan_Click(); + + Trigger_Head_Fan_Control(HEAD_FAN_RIGHT, request->delay & 0xFF); + Task_sleep(2000); + + //response.progress = Fan_Click_Info.Product_ID; + response.progress = Head_Fan_Tach[0]; + response.has_progress = true; + + } + else + if((request->amount == 0xFAC1) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + Trigger_Head_Fan_Control(HEAD_FAN_LEFT, request->delay & 0xFF); + Task_sleep(2000); + response.progress = Head_Fan_Tach[1]; + response.has_progress = true; + } + else + if ((request->amount & 0x0000FFF0) == 0xFAC0) //WHS Fan control + { + uint16_t fan_tacho = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + Trigger_SetWHSFanSpeed(((request->amount & 0x0000000F)-1) , request->delay & 0x000000FF); + Task_sleep(2000); + fan_tacho = WHS_Get_fan_tach( (request->amount & 0x0000000F)-1); + } + response.progress = fan_tacho; + response.has_progress = true; + } + else + if((request->amount == 0x0A) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Initial_Offset_A[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0xB) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Slope_B[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0x5C4E) && (request->delay == 0x5C4E)) //Screw Home Pos dir + { + test_Home_Pos(); + } + else + if((request->amount == 0x100) && (request->delay == 0x100)) //head card PT100 + { + Test_HeadCard_PT100(TEMP_SENSE_ANALOG_DYEINGH_TEMP1); + //response.progress = (double)Test_Read_Buf[0]; + response.progress = (double)Data_ADC_Head; + response.has_progress = true; + } + else + if((request->amount == 0x0D) && (request->delay == 0xEE)) //Dispenser EEprom + { + test_disp_eeprom(0x01,0xA0); + response.progress = OK; + response.has_progress = true; + } + else + if((request->amount == 0xCF) && (request->delay == 0xCF)) //Create File System on the Drive + { +#ifdef WATCHDOG + ROM_WatchdogResetDisable(WATCHDOG0_BASE); + uint32_t timeout = 0xFFFFFFFFU; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + FRESULT iFResult = Init_Flash_File_System(true); + if(iFResult != FR_OK) + { + LOG_ERROR (iFResult, "Error during init Flash File System"); + assert(iFResult); + } +#ifdef WATCHDOG + ROM_WatchdogResetEnable(WATCHDOG0_BASE); + timeout = 120000000*3; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + } + else + if((request->amount == 0x0C) && (request->delay == 0x0C)) //Get Gas Sensor + { + response.progress = (double)Calculate_Gas_Power_Consumption(); + response.has_progress = true; + + } + else + if((request->amount == 0xDD) && (request->delay == 0xDD)) //Read Input Voltage + { + LOG_ERROR(request->delay,"CheckAcInputVoltage"); + CheckAcInputVoltage(); + + response.progress = (double)Input_Voltage; + response.has_progress = true; + } + else + if((request->amount == 0x0CE) && (request->delay == 0x0CE)) //Get Gas Sensor + { + LOG_ERROR(request->delay,"FlashInit"); + FlashInit(); + response.progress = (double)OK; + response.has_progress = true; + + } + else + if(request->amount == 0x0CC) //Cartridge Validation Response Demo + { + LOG_ERROR(request->delay,"ResponseDemo"); + ResponseDemo(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE0) //fast refresh for pressure + { + LOG_ERROR(request->delay,"setRapidPressureRead"); + setRapidPressureRead(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Starting Dispenser PID"); + IDS_Start_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE2) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Stoping Dispenser PID"); + IDS_Stop_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xB1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Set loading arm center"); + Read_Dryer_ENC_Position(); + Task_sleep(500); + Read_Dryer_ENC_Position(); + Task_sleep(500); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CENTER,Read_Dryer_ENC_Position(0,0)); + response.has_progress = true; + } + else + if(request->amount == 0xB2) //Set loading arm cycles + { + LOG_ERROR(request->delay,"Set loading arm cycles"); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CYCLES,request->delay); + response.has_progress = true; + } + + else + if(request->amount == 0xB3) //fast refresh for pressure + { + LOG_ERROR(request->amount,"keep alive test"); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB4) //IDS_Dispenser_Content_Init + { + LOG_ERROR(request->amount,"IDS_Dispenser_Content_Init"); + IDS_Dispenser_Content_Init(); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB5) //fast refresh for pressure + { + if (request->delay<=100) + { + LOG_ERROR(request->delay,"set stub_heating_limit"); + stub_heating_limit = request->delay; + } + response.progress = request->delay; + response.has_progress = true; + + } +#ifdef VAC_TEST + else + if(request->amount == 0xB6) //fast refresh for pressure + { + LOG_ERROR(request->delay,"set vac read test"); + VAC_Test = (double)request->delay; + response.progress = request->delay; + response.has_progress = true; + + } +#endif + + else + if(request->amount == 0xC3) //suspend I2C task + { + if (request->delay == 0) + { + LOG_ERROR(request->delay,"Suspend I2C"); + PowerOffHeatersOff(); + Task_sleep(1000); + Task_setPri (I2C_Task_Handle,-1); + } + else + { + LOG_ERROR(request->delay,"Resume"); + Task_setPri (I2C_Task_Handle,8); + } + response.progress = request->delay; + response.has_progress = true; + + } + else + if((request->amount == 0xDF) && (request->delay == 0xDF)) //Power off + { + PowerOffInit(); + } + else + if(request->amount == 0xF1) + { + LOG_ERROR(request->delay,"NumberOfRotationPerPassage"); + NumberOfRotationPerPassage = (float)(request->delay)/1000; + } + else + { + response.has_progress = true; + int i = 0; + for (i = 0; i < request->amount; i++) + { + response.progress = i; + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, false, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + + int co = 0; + for (co = 0; co < request->delay; co++) + { + __delay_cycles(1000000); + } + } + } + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, true, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + //writeLine("Progress Completed!"); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + return; + +} diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/60c91eefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/60c91eefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/60c91eefab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/e0945693ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/e0945693ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/e0945693ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/500911ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/500911ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/500911ebab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/506b5292ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/506b5292ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/506b5292ac71001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/d0f81aefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/d0f81aefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/d0f81aefab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/f0154893ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/f0154893ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/f0154893ac71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/70efc093ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/70efc093ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/70efc093ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/404c9e93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/404c9e93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/404c9e93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/508c9191ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/508c9191ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/508c9191ac71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/20e100efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/20e100efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/20e100efab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/801035efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/801035efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/801035efab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/e0706292ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/e0706292ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/e0706292ac71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/30f18292ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/30f18292ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/30f18292ac71001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/8025f3eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/8025f3eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/8025f3eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/4045b493ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/4045b493ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/4045b493ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/b0a00aebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/b0a00aebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/b0a00aebab71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/20f6beeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/20f6beeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/20f6beeeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/505854efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/505854efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/505854efab71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/1015e793ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/1015e793ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/1015e793ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/10b1c3eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/10b1c3eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/10b1c3eeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/20914194ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/20914194ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/20914194ac71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/4069a4eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/4069a4eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/4069a4eeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/40fe2d93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/40fe2d93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/40fe2d93ac71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/40bcabeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/40bcabeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/40bcabeeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/a0e57991ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/a0e57991ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/a0e57991ac71001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/e05010ecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/e05010ecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/e05010ecab71001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/70fc9feeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/70fc9feeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/70fc9feeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/b0c815efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/b0c815efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/b0c815efab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/d007e493ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/d007e493ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/d007e493ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/107d37ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/107d37ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/107d37ebab71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/60e6bb93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/60e6bb93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/60e6bb93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/5040e593ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/5040e593ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/5040e593ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/70ce7deeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/70ce7deeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/70ce7deeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/60d69493ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/60d69493ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/60d69493ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/104214efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/104214efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/104214efab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/30867993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/30867993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/30867993ac71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/209b6f93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/209b6f93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/209b6f93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/403a2493ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/403a2493ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/403a2493ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/a07202f0ab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/a07202f0ab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/a07202f0ab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/10362693ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/10362693ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/10362693ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/d089fe92ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/d089fe92ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/d089fe92ac71001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/f01fe3eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/f01fe3eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/f01fe3eeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/d06324eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/d06324eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/d06324eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/80b04e94ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/80b04e94ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/80b04e94ac71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/803ba693ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/803ba693ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/803ba693ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/d0ce9eefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/d0ce9eefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/d0ce9eefab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c048a993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c048a993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c048a993ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c0a29a93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c0a29a93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c0a29a93ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/f0436a93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/f0436a93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/f0436a93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/204b19efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/204b19efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/204b19efab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/601b53ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/601b53ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/601b53ebab71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/80f923efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/80f923efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/80f923efab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/c0dd9beeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/c0dd9beeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/c0dd9beeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/0005f893ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/0005f893ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/0005f893ac71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/10114193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/10114193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/10114193ac71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/10eeae93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/10eeae93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/10eeae93ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/00151beeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/00151beeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/00151beeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/506719eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/506719eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/506719eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/b05efdeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/b05efdeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/b05efdeeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/7039f8efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/7039f8efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/7039f8efab71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/e035ce93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/e035ce93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/e035ce93ac71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/f0c33192ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/f0c33192ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/f0c33192ac71001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/30098591ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/30098591ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/30098591ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/80d71592ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/80d71592ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/80d71592ac71001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/c066a493ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/c066a493ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/c066a493ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/d05d2f93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/d05d2f93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/d05d2f93ac71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/e086efefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/e086efefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/e086efefab71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/000a8f93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/000a8f93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/000a8f93ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/d0ec99efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/d0ec99efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/d0ec99efab71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/f073df93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/f073df93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/f073df93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/b0af40ecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/b0af40ecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/b0af40ecab71001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/e06f7193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/e06f7193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/e06f7193ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/4081aa93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/4081aa93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/4081aa93ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c0421defab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c0421defab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c0421defab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/f08f8793ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/f08f8793ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/f08f8793ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/30d98093ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/30d98093ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/30d98093ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/c0e57a93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/c0e57a93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/c0e57a93ac71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/105f3cebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/105f3cebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/105f3cebab71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/e02c9193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/e02c9193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/e02c9193ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70dc51eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70dc51eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70dc51eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/f0ba61eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/f0ba61eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/f0ba61eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/5075f193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/5075f193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/5075f193ac71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/6040ad93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/6040ad93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/6040ad93ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/709e9b91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/709e9b91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/709e9b91ac71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/70578693ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/70578693ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/70578693ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/805659eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/805659eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/805659eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/e0acc5eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/e0acc5eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/e0acc5eeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/30380993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/30380993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/30380993ac71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/3059b5eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/3059b5eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/3059b5eeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/20c05493ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/20c05493ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/20c05493ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/50b3c991ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/50b3c991ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/50b3c991ac71001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/301c6193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/301c6193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/301c6193ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/706e9793ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/706e9793ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/706e9793ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a03fdc93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a03fdc93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a03fdc93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/e01922eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/e01922eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/e01922eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/50bc73eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/50bc73eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/50bc73eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/900eaaeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/900eaaeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/900eaaeeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/a083a9ecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/a083a9ecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/a083a9ecab71001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/90a07e91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/90a07e91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/90a07e91ac71001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/a01f19ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/a01f19ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/a01f19ebab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/60e646ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/60e646ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/60e646ebab71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/90605393ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/90605393ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/90605393ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/d0d08493ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/d0d08493ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/d0d08493ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/3000b993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/3000b993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/3000b993ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/00212bebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/00212bebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/00212bebab71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/204e5deeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/204e5deeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/204e5deeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60197593ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60197593ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60197593ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/d08b5193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/d08b5193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/d08b5193ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/408f09ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/408f09ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/408f09ebab71001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/20eee3efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/20eee3efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/20eee3efab71001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/80b13f93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/80b13f93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/80b13f93ac71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/901c0decab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/901c0decab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/901c0decab71001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/c0927393ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/c0927393ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/c0927393ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/f0a623ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/f0a623ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/f0a623ebab71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/200a1f93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/200a1f93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/200a1f93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/9017e7eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/9017e7eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/9017e7eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/d01c2debab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/d01c2debab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/d01c2debab71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/70894aeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/70894aeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/70894aeeab71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/90cdabecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/90cdabecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/90cdabecab71001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/e0adba93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/e0adba93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/e0adba93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/60dc1c92ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/60dc1c92ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/60dc1c92ac71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/5099e1eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/5099e1eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/5099e1eeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20b2edefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20b2edefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20b2edefab71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/40fa83ecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/40fa83ecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/40fa83ecab71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/f0e63494ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/f0e63494ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/f0e63494ac71001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/10d97f91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/10d97f91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/10d97f91ac71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/205456efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/205456efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/205456efab71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/40eda491ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/40eda491ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/40eda491ac71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/e00b4eeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/e00b4eeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/e00b4eeeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/101f1593ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/101f1593ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/101f1593ac71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/f03521ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/f03521ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/f03521ebab71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/60454493ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/60454493ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/60454493ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/e0c96293ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/e0c96293ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/e0c96293ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0495feeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0495feeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0495feeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/80924feeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/80924feeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/80924feeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/40393394ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/40393394ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/40393394ac71001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/c0995d93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/c0995d93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/c0995d93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/f07b27efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/f07b27efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/f07b27efab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/c0ab62ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/c0ab62ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/c0ab62ebab71001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/90ed6aefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/90ed6aefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/90ed6aefab71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/509f6d93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/509f6d93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/509f6d93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/606b87eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/606b87eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/606b87eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/d0555494ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/d0555494ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/d0555494ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/d09a83eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/d09a83eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/d09a83eeab71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/00631e92ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/00631e92ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/00631e92ac71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/408135ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/408135ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/408135ebab71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/b0692093ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/b0692093ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/b0692093ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/b0f5d993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/b0f5d993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/b0f5d993ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/302b93eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/302b93eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/302b93eeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/d0af41eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/d0af41eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/d0af41eeab71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/e0576beeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/e0576beeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/e0576beeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/80c9aeeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/80c9aeeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/80c9aeeeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/507a13ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/507a13ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/507a13ebab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/80f8c593ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/80f8c593ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/80f8c593ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/b0a51693ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/b0a51693ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/b0a51693ac71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/d07d7d93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/d07d7d93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/d07d7d93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/50457c93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/50457c93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/50457c93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/d0cbed93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/d0cbed93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/d0cbed93ac71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/80754993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/80754993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/80754993ac71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/50b245efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/50b245efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/50b245efab71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/e0d4f293ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/e0d4f293ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/e0d4f293ac71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/606ecf93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/606ecf93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/606ecf93ac71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/80d52feeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/80d52feeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/80d52feeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/a0ce64ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/a0ce64ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/a0ce64ebab71001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/e0d9f6efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/e0d9f6efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/e0d9f6efab71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/701431ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/701431ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/701431ebab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/c041bf93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/c041bf93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/c041bf93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/f04275eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/f04275eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/f04275eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/a09d6feeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/a09d6feeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/a09d6feeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/70f45793ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/70f45793ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/70f45793ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/10309aeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/10309aeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/10309aeeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/3080edeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/3080edeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/3080edeeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/60fa84eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/60fa84eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/60fa84eeab71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/b086b991ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/b086b991ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/b086b991ac71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/d0291492ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/d0291492ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/d0291492ac71001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/503e9293ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/503e9293ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/503e9293ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/a0a0b793ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/a0a0b793ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/a0a0b793ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/308331eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/308331eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/308331eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/100278eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/100278eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/100278eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/700730efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/700730efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/700730efab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/b0e53debab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/b0e53debab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/b0e53debab71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/e0d98993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/e0d98993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/e0d98993ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/706e04f0ab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/706e04f0ab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/706e04f0ab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/b08da391ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/b08da391ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/b08da391ac71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/c02c9091ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/c02c9091ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/c02c9091ac71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0504d94ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0504d94ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0504d94ac71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/209dc293ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/209dc293ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/209dc293ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30b93293ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30b93293ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30b93293ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f010b193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f010b193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f010b193ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/60ae67eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/60ae67eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/60ae67eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/d05d9cefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/d05d9cefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/d05d9cefab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/d0a7f992ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/d0a7f992ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/d0a7f992ac71001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/10b06593ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/10b06593ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/10b06593ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/805b8391ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/805b8391ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/805b8391ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/a0a20a94ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/a0a20a94ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/a0a20a94ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/303714eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/303714eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/303714eeab71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/b09be893ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/b09be893ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/b09be893ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/c03ad593ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/c03ad593ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/c03ad593ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/10d111efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/10d111efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/10d111efab71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/905d0f94ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/905d0f94ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/905d0f94ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/d0fdb1eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/d0fdb1eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/d0fdb1eeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/00b1fbeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/00b1fbeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/00b1fbeeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90a9bb91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90a9bb91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90a9bb91ac71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/80993d94ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/80993d94ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/80993d94ac71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/f098c493ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/f098c493ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/f098c493ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/208ef9eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/208ef9eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/208ef9eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/f00015ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/f00015ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/f00015ebab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/40718393ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/40718393ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/40718393ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/406e3beeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/406e3beeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/406e3beeab71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/70ea25eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/70ea25eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/70ea25eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/a074afe1ab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/a074afe1ab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..25f9bcb3d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/a074afe1ab71001a1f70833eb9ed7011 @@ -0,0 +1,810 @@ + +#include +#include +#include +#include +#include "include.h" +#include "driverlib/gpio.h" + +#include "Communication/Connection.h" + +#include "Drivers/USB_Communication/USBCDCD.h" +#include "StateMachines/Initialization/PowerOffSequence.h" +#include "StateMachines/Initialization/PowerIdle.h" + +#include "drivers/Flash_Memory/FATFS/ff.h" +#include "drivers/Flash_Memory/FATFS/Control_File_System.h" +#include "drivers/Flash_ram/FlashProgram.h" +#include "drivers/adc_sampling/adc.h" +#include "drivers/Heater/TemperatureSensor.h" +#include "drivers/ADC_Sampling/adc.h" +#include "drivers/Flash_ram/MCU_E2Prom.h" +#include "Drivers/SSI_Comm/Dancer/Dancer.h" + +#include "Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/fan_click.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.h" +#include "drivers/Motors/Motor.h" +#include "drivers/FPGA/FPGA_SPI_Comm.h" +#include "Modules/IFS/ifs.h" +#include "Modules/IDS/ids_ex.h" +#include "Modules/Control/MillisecTask.h" +#include "modules/thread/thread_ex.h" +#include "modules/heaters/heaters_ex.h" +#include +#include +#include "Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.h" +#include "drivers/adc_sampling/adc.h" +#include +#include +#include +#include +#include +#include +#include + + +#include "Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.h" + + + +extern float NumberOfRotationPerPassage; // how many rotations per spool passage + +//#include "graphics_adapter.h" +extern uint8_t Input_Voltage; +extern uint8_t Test_Read_Buf[4]; + +extern uint8_t Head_Fan_PWM_Command[2]; +extern uint16_t Head_Fan_Tach[2]; + +void Stub_ProgressRequest(MessageContainer* requestContainer) +{ + MessageContainer responseContainer; + + ProgressRequest* request = progress_request__unpack(NULL, requestContainer->data.len, requestContainer->data.data); + + //writeLine("Progress Request..."); + + ProgressResponse response = PROGRESS_RESPONSE__INIT; + +// uint8_t high_byte = 0; +// uint8_t low_byte = 0; + + uint8_t addr = 0; + uint8_t port = 0; + uint8_t pin = 0; + uint8_t value= 0; + + if(request->amount == 0x3E9) // set TCA9555 u3 or u4 + { + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay & 0x8000) // bit15 select the chip address + { + addr = I2CExp2_ADDRESS; + } + else + { + addr = I2CExp1_ADDRESS; + } + + if (request->delay & 0x4000) // bit 14 select port 0 or 1 + { + port = D_TCA9555_PORT_1; + } + else + { + port = D_TCA9555_PORT_0; + } + + pin = ((request->delay & 0x0F00) >> 8); // 8..11 + + if (request->delay & 0x0001) + { + value = 1; + } + else + { + value = 0; + } + response.progress = Write_WHS_9555_io_value( addr, port, pin, value); + response.has_progress = true; + } + } + else + if(request->amount == 0x3E8) //&& (request->delay <= 0x0fff))// set WHS Blower speed 0x00-0xfff + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_enable_control_loop( request->delay & 0x1000);//disable control loop: 0=disable 1= enable + Trigger_SetWHSBlowerVoltage (request->delay & 0x0FFF); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E7) // set WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_Set_SetPoint_Q_value((double) request->delay); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E6) // get WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + response.progress = WHS_Get_Volt_Blower_Control(); + //response.progress = 0; + response.has_progress = true; + } + } + // WHS_Get_Volt_Blower_Control + else + if(request->amount == 0x3EA) + { + uint16_t tempu16 = 0; + double temp_double = 0.0; + uint8_t display_byte = 0; + uint16_t A2D_data = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + display_byte = ((request->delay & 0x3000)>>12); + switch (display_byte) + { + case 0: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x0000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(DrierAVERAGE); + break; + case 1: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x1000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(HeadCURRENT); + break; + case 2: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x2000); // + SetLeftDisplayView (DrierAVERAGE); + SetWriteDisplayView(DrierCURRENT); + break; + case 3: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x3000); // + SetLeftDisplayView (HeadCURRENT); + SetWriteDisplayView(DrierCURRENT); + break; + } + + A2D_data = (request->delay & 0x0FFF); + switch(A2D_data )// get A2D + { + case 0: + get_orf_1(&tempu16); + break; + case 1: + get_orf_2(&tempu16); + break; + case 2: + get_orf_3(&tempu16); + break; + case 3: + get_vlev1(&tempu16); + break; + case 4: + get_vlev2(&tempu16); + break; + case 5: + get_gas_out(&tempu16); + break; + case 6: + get_cur_fan(&tempu16); + break; + case 7: + get_cur_vlv1(&tempu16); + break; + case 8: + tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + case 10: + temp_double = get_Q(HEAD_FLOW_METER); + break; + case 12: + temp_double = get_Q(DRIER_FLOW_METER); + break; + case 20: + temp_double = get_average_Q(HEAD_FLOW_METER); //HEAD + break; + case 22: + temp_double = get_average_Q(DRIER_FLOW_METER); //Drier + break; + + case 11: + //get_orf_2(&tempu16); + break; + case 13: + //get_vlev1(&tempu16); + break; + case 14: + //get_vlev2(&tempu16); + break; + case 15: + //get_gas_out(&tempu16); + break; + case 16: + //get_cur_fan(&tempu16); + break; + case 17: + //get_cur_vlv1(&tempu16); + break; + case 18: + //tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + default : + tempu16 = 0x500; //get_cur_vlv2(&tempu16); + break; + } + } + if ((request->delay)<10) + { + response.progress = (double)tempu16; + } + else + { + response.progress = temp_double; + } + response.has_progress = true; + } + else // + if(request->amount == 0x3EB) + { + uint16_t tempu16 = 0; + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay <= 0x03FF) + { + Trigger_WHS_Set_RDAC(request->delay); // 0 -> 0x03FF + } + else + { + //Trigger_WHS_set_Rheostat_to_CLEAN_AIR(); + } + get_gas_out(&tempu16); + } + response.progress = (double)tempu16; + response.has_progress = true; + } + else + if((request->amount == 0xDE) && (request->delay < 8) && (request->delay >= 0)) // read dispenser type + LS status + { + response.progress = ((Dispenser_struct[request->delay].Type) << 8) + Dispenser_struct[request->delay].Status; + response.has_progress = true; + } + else + if(request->amount == 0xAD) //undef AUTO_HOME_DISPENSERS + { + if ((request->delay >=AutoHoming_off )&&(request->delay<=AutoHoming_JobEnd_PowerOn_off )) + IDS_Dispenser_SetAutoHoming_Config(request->delay); + response.progress = 01; + response.has_progress = true; + } + else + if(request->amount == 0xAD1) //Set_Check_Pressure_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Check_Pressure_Bypass"); + response.progress = Set_Check_Pressure_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD2) //Set_Thread_Rockers_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Thread_Rockers_Bypass"); + response.progress = Set_Thread_Rockers_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD3) //Set_Auto_Shutdown_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Shutdown_Bypass"); + response.progress = Set_Auto_Shutdown_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD4) //Set_Auto_Idle_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Idle_Bypass"); + response.progress = Set_Auto_Idle_Bypass(request->delay); + response.has_progress = true; + } + else + if((request->amount == 0x01) && ((request->delay &0x010000) == 0x010000)) //change mode powerset01 + { + response.progress = Power_Step_01_Mode(((request->delay &0x00FF00)>>8), request->delay &0x0000FF); + response.has_progress = true; + } + else + if((request->amount == 0xAB) && (request->delay == 0xAB)) //Get pressure with flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(true); + response.has_progress = true; + + } + else + if((request->amount == 0xAB) && (request->delay == 0x0)) //measured sensor voltage without flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(false); + response.has_progress = true; + + } + else + if((request->amount == 0xAC) && (request->delay == 0xAC)) //VAC + { + response.progress = ReadVAC(); + response.has_progress = true; + + } + else + if(request->amount == 0x0EAD) //Head Card I/O + { + uint8_t Read_Buf[1] = {0}; + uint8_t Write_Buf[2] = {0,0}; + uint8_t Script_Slave_Add = request -> delay >> 16;//Slave address 0x40 / 0x42 / 0x44 / 0x46 + Write_Buf[0] = (request -> delay & 0x00FF00) >> 8;//read/write low/high + /* + ------------------ + | Byte | WR | RD | + ------------------ + | Low | 02 | 00 | + | High | 03 | 01 | + ------------------ + */ + Write_Buf[1] = request -> delay & 0x0000FF;//data to write + + response.has_progress = false; + + Select_Main_Head_Mux_Channel(); + + if(Write_Buf[0] == 0)//Read + { + //Head_Read_IO_Reg(Script_Slave_Add, LOW); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46) + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + + if(Write_Buf[0] == 1)//Read + { + //Head_Read_IO_Reg(Script_Slave_Add, HIGH); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46)//LS + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + /* + if(Write_Buf[0] == 2)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + Head_I2C_EXP2_0x42.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); + } + + //Head_Write_IO_Reg(Script_Slave_Add, LOW); + } + if(Write_Buf[0] == 3)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[1] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + //Head_I2C_EXP2_0x42.uchar[1] = Write_Buf[1]; + Head_I2C_EXP2_0x42.bits.OUTPUT_MAG_DIR = (Write_Buf[1] & 0x01);//control only the magnet + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP3_0x44.uchar[1] = (Write_Buf[1] & 0x0C); + } + //Head_Write_IO_Reg(Script_Slave_Add, HIGH); + } + */ + { + // write , Write_Buf[0] bit number 0..15 , Write_Buf[1] 0 or 1 + Write_Buf[1] = Write_Buf[1] & 0x01; + + if(Script_Slave_Add == 0x40) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP1_0x40.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP1_0x40.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x42) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP2_0x42.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP2_0x42.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); + + if(Write_Buf[1] == 0x01) + Head_I2C_EXP4_0x46.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP4_0x46.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + } + } + else + if(request->amount == 0xFEAD) //functions Head Card I/O + { + Select_Main_Head_Mux_Channel(); + + if((request -> delay & 0xFFF000) == 0xCAF000)//Actuator + { + //HeadCard_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), /*(bool)((request -> delay & 0x10)>>4), */(bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + Trigger_Head_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), (bool)((request -> delay & 0x10)>>4), (bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + //response.progress = HeadCard_Actuators_Status((ACTUATORS)((request -> delay) & 0x100)>>8); + response.has_progress = true; + } + else + if((request -> delay & 0xFF0000) == 0xCA0000)//control all heaters + { + if(request -> delay & 0x01) + { + Disconnect_Mixer_and_12_Heaters_Latch(); + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, TRUE); + Connect_Mixer_and_12_Heaters_Latch(); + } + else + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, FALSE); + } + else + if(request -> delay == 0x0)//return head type + { + response.progress = Head_Type; + response.has_progress = true; + } + + } + else + if((request->amount == 0xFAC0) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + //Head_Fan_PWM_Command[0] = (request->delay & 0xFF) ; + //Test_Head_fan_Click(); + + Trigger_Head_Fan_Control(HEAD_FAN_RIGHT, request->delay & 0xFF); + Task_sleep(2000); + + //response.progress = Fan_Click_Info.Product_ID; + response.progress = Head_Fan_Tach[0]; + response.has_progress = true; + + } + else + if((request->amount == 0xFAC1) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + Trigger_Head_Fan_Control(HEAD_FAN_LEFT, request->delay & 0xFF); + Task_sleep(2000); + response.progress = Head_Fan_Tach[1]; + response.has_progress = true; + } + else + if ((request->amount & 0x0000FFF0) == 0xFAC0) //WHS Fan control + { + uint16_t fan_tacho = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + Trigger_SetWHSFanSpeed(((request->amount & 0x0000000F)-1) , request->delay & 0x000000FF); + Task_sleep(2000); + fan_tacho = WHS_Get_fan_tach( (request->amount & 0x0000000F)-1); + } + response.progress = fan_tacho; + response.has_progress = true; + } + else + if((request->amount == 0x0A) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Initial_Offset_A[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0xB) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Slope_B[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0x5C4E) && (request->delay == 0x5C4E)) //Screw Home Pos dir + { + test_Home_Pos(); + } + else + if((request->amount == 0x100) && (request->delay == 0x100)) //head card PT100 + { + Test_HeadCard_PT100(TEMP_SENSE_ANALOG_DYEINGH_TEMP1); + //response.progress = (double)Test_Read_Buf[0]; + response.progress = (double)Data_ADC_Head; + response.has_progress = true; + } + else + if((request->amount == 0x0D) && (request->delay == 0xEE)) //Dispenser EEprom + { + test_disp_eeprom(0x01,0xA0); + response.progress = OK; + response.has_progress = true; + } + else + if((request->amount == 0xCF) && (request->delay == 0xCF)) //Create File System on the Drive + { +#ifdef WATCHDOG + ROM_WatchdogResetDisable(WATCHDOG0_BASE); + uint32_t timeout = 0xFFFFFFFFU; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + FRESULT iFResult = Init_Flash_File_System(true); + if(iFResult != FR_OK) + { + LOG_ERROR (iFResult, "Error during init Flash File System"); + assert(iFResult); + } +#ifdef WATCHDOG + ROM_WatchdogResetEnable(WATCHDOG0_BASE); + timeout = 120000000*3; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + } + else + if((request->amount == 0x0C) && (request->delay == 0x0C)) //Get Gas Sensor + { + response.progress = (double)Calculate_Gas_Power_Consumption(); + response.has_progress = true; + + } + else + if((request->amount == 0xDD) && (request->delay == 0xDD)) //Read Input Voltage + { + LOG_ERROR(request->delay,"CheckAcInputVoltage"); + CheckAcInputVoltage(); + + response.progress = (double)Input_Voltage; + response.has_progress = true; + } + else + if((request->amount == 0x0CE) && (request->delay == 0x0CE)) //Get Gas Sensor + { + LOG_ERROR(request->delay,"FlashInit"); + FlashInit(); + response.progress = (double)OK; + response.has_progress = true; + + } + else + if(request->amount == 0x0CC) //Cartridge Validation Response Demo + { + LOG_ERROR(request->delay,"ResponseDemo"); + ResponseDemo(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE0) //fast refresh for pressure + { + LOG_ERROR(request->delay,"setRapidPressureRead"); + setRapidPressureRead(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Starting Dispenser PID"); + IDS_Start_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE2) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Stoping Dispenser PID"); + IDS_Stop_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xB1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Set loading arm center"); + Read_Dryer_ENC_Position(); + Task_sleep(500); + Read_Dryer_ENC_Position(); + Task_sleep(500); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CENTER,Read_Dryer_ENC_Position(0,0)); + response.has_progress = true; + } + else + if(request->amount == 0xB2) //Set loading arm cycles + { + LOG_ERROR(request->delay,"Set loading arm cycles"); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CYCLES,request->delay); + response.has_progress = true; + } + + else + if(request->amount == 0xB3) //fast refresh for pressure + { + LOG_ERROR(request->amount,"keep alive test"); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB4) //IDS_Dispenser_Content_Init + { + LOG_ERROR(request->amount,"IDS_Dispenser_Content_Init"); + IDS_Dispenser_Content_Init(); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB5) //fast refresh for pressure + { + if (request->delay<=100) + { + LOG_ERROR(request->delay,"set stub_heating_limit"); + stub_heating_limit = request->delay; + } + response.progress = request->delay; + response.has_progress = true; + + } +#ifdef VAC_TEST + else + if(request->amount == 0xB6) //fast refresh for pressure + { + LOG_ERROR(request->delay,"set vac read test"); + VAC_Test = (double)request->delay; + response.progress = request->delay; + response.has_progress = true; + + } +#endif + + else + if(request->amount == 0xC3) //suspend I2C task + { + if (request->delay == 0) + { + LOG_ERROR(request->delay,"Suspend I2C"); + PowerOffHeatersOff(); + Task_sleep(1000); + Task_setPri (I2C_Task_Handle,-1); + } + else + { + LOG_ERROR(request->delay,"Resume"); + Task_setPri (I2C_Task_Handle,8); + } + response.progress = request->delay; + response.has_progress = true; + + } + else + if((request->amount == 0xDF) && (request->delay == 0xDF)) //Power off + { + PowerOffInit(); + } + else + if(request->amount == 0xF1) + { + LOG_ERROR(request->delay,"NumberOfRotationPerPassage"); + NumberOfRotationPerPassage = (float)(request->delay)/1000; + } + else + { + response.has_progress = true; + int i = 0; + for (i = 0; i < request->amount; i++) + { + response.progress = i; + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, false, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + + int co = 0; + for (co = 0; co < request->delay; co++) + { + __delay_cycles(1000000); + } + } + } + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, true, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + //writeLine("Progress Completed!"); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + return; + +} diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/b0b28891ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/b0b28891ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/b0b28891ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/101cd193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/101cd193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/101cd193ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/4073d693ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/4073d693ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/4073d693ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f030ff93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f030ff93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f030ff93ac71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f05eb091ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f05eb091ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f05eb091ac71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/a08bf993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/a08bf993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/a08bf993ac71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/a01145ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/a01145ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/a01145ebab71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/4036ebeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/4036ebeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/4036ebeeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/a01c46eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/a01c46eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/a01c46eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/8070b293ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/8070b293ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/8070b293ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/90340febab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/90340febab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/90340febab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/f090e5eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/f090e5eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/f090e5eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/30bdd893ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/30bdd893ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/30bdd893ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/e016deeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/e016deeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/e016deeeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/009917ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/009917ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/009917ebab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/d0dd6794ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/d0dd6794ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/d0dd6794ac71001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/106353eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/106353eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/106353eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/40701decab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/40701decab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/40701decab71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/10d455eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/10d455eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/10d455eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/402b5beeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/402b5beeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/402b5beeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/8067e2efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/8067e2efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/8067e2efab71001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/90d58a91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/90d58a91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/90d58a91ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/805d4794ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/805d4794ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/805d4794ac71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/909a63efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/909a63efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/909a63efab71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/b00066eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/b00066eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/b00066eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/90bee6edab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/90bee6edab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/90bee6edab71001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/b005fdedab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/b005fdedab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/b005fdedab71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/70690094ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/70690094ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/70690094ac71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e004f3ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e004f3ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e004f3ebab71001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e0efa5eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e0efa5eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e0efa5eeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/20acf4eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/20acf4eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/20acf4eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/4008c9eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/4008c9eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/4008c9eeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/f02db7eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/f02db7eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/f02db7eeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/b0bfd8eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/b0bfd8eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/b0bfd8eeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/50bd6893ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/50bd6893ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/50bd6893ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/f0479f91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/f0479f91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/f0479f91ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/90e86693ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/90e86693ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/90e86693ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/50919993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/50919993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/50919993ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/100e8c91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/100e8c91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/100e8c91ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/90b012eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/90b012eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/90b012eeab71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/70aa8d93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/70aa8d93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/70aa8d93ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/b0803193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/b0803193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/b0803193ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/00381ef0ab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/00381ef0ab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/00381ef0ab71001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/9054d293ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/9054d293ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/9054d293ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/a03357eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/a03357eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/a03357eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/30a90b93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/30a90b93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/30a90b93ac71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/d08809eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/d08809eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/d08809eeab71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/d0dd63eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/d0dd63eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/d0dd63eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/e0ebffedab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/e0ebffedab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/e0ebffedab71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/300b4994ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/300b4994ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/300b4994ac71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/60c070ecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/60c070ecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/60c070ecab71001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/c03f6c93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/c03f6c93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/c03f6c93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/60094e93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/60094e93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/60094e93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/f0042ceeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/f0042ceeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/f0042ceeab71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index index a1421bebc..dfb2fcbe2 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index index 2d94195ec..8093e6421 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index index eb1863152..55089d454 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index index 739043c82..0c2cf4641 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index index a08673fc8..fabcea493 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index index da138bce0..f732aa4f8 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index index d0659ef9f..62c1063ee 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index index 05301a442..75fcb67e7 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index index a435ad170..07a964c37 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index index cb71d3d92..8cb730e92 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index index 654a7efdd..a9bb85c2d 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index index 6f81d3844..b4cf491ad 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index index 4e5deda48..9444d5abb 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index index 403a89583..bf2392d51 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index index 51526f8b3..0b99739c7 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index index 220df3b01..1525bee99 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index index c7b9aab24..063be0028 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index index 7d55682d2..b6e422f46 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index index 48a471490..1eae7d38d 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index index ac2ed8354..faee56b70 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index index 94e5781ae..72f1223fc 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index index 086abbf23..02be526ab 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index index 90e3d6e52..139901f3f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index index f3482c941..bd11504ac 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index index 6a568ba81..9bcebc70d 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index index 95b440993..15ed99ce0 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index index 912aa1af1..4b55de012 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index index 038657041..2d2b6feb5 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index index 69fae0b04..1eab45a17 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index index 88adc091e..8603dd595 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index index 529db06ba..2bbc45970 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index index 9d2882267..0f803b0f1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index index 5986dd4b6..04bdb284e 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index index 7c3d56641..2e637044f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index index 2d9e4cec3..3d474dd63 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index index 8d4b4a09b..d9ccd4dae 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index index 7d90386ef..3816e5025 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index index bb2910b9e..1573d7c38 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index index 48f34c645..0d3c94eff 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index index 3ae89772e..3c3208a27 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index index 819d95b2a..2993cff7f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index index 72af67760..3f6bd6e8b 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index index 985513bf5..f28f92f7b 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index index 29b4ecd27..24447699a 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index index fd85f7e38..43f43ac6f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index index a102316bc..dd17bcffa 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index index 92173c6f5..091c6f447 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index index 479514c38..9ada74d06 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index index 7cb05645b..b8ef151dc 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index index 47946de79..2a0ac3ea4 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index index 097eb6abf..2ae394598 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index index 7b34b4653..a19d5539e 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index index 774863f3e..56e4f7a68 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index index dc780b91f..7d59cdf24 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index index e7228dbf0..b7d0c8008 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index index e4296dbb6..a8ef4e8e1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index index 054c20d7f..7c1807fca 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index index cb25da445..89641a00d 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index index cd986ac4c..1caeb46fe 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index index 1553ba713..41b2e94e1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index index 516df1909..c733e9517 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index index d89b762aa..74c48d6e2 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index index 90621363d..baf186c8b 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index index 531cf4aee..1ce7cfea7 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index index 49ed2d4ea..8d81d023a 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index index 7155518eb..efd198246 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index index cedcd3e9c..f523e47b3 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index index 701baa431..6c41d392d 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index index 7a0ed2378..ebe90f08e 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index index 3815b3c96..954d84aa6 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index index 614faadad..834677549 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index index e798f1ea7..3f6b78078 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index index 4efbecc44..3b74a5814 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index index b1efbde96..8fd95dccc 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index index 41bb5f7cb..c04c2d9d0 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index index 5296a29ff..40dbf0a29 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index index 58e12b873..09c1368e3 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index index 58f53858d..380dbcfb6 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index index 99236c4ab..cfecac8d5 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index index 2182e6662..5dcb7bd2f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index index ee56f3f33..f6fc6c1f5 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index index 64bb90857..f82b3753b 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index index 037aa9727..007c8eb3c 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index index 1a17a7a9c..2ef6a7a34 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/91/c1/properties.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/91/c1/properties.index new file mode 100644 index 000000000..7f756210c Binary files /dev/null and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/91/c1/properties.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.markers.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.markers.snap index 6f5ee61ae..107424499 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.markers.snap and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.markers.snap differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.syncinfo.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.syncinfo.snap index fd766bfd2..5ed84375f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.syncinfo.snap and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.syncinfo.snap differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.markers.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.markers.snap index fd766bfd2..5ed84375f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.markers.snap and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.markers.snap differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.syncinfo.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.syncinfo.snap index fd766bfd2..5ed84375f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.syncinfo.snap and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.syncinfo.snap differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap index fd766bfd2..5ed84375f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap and b/Software/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources b/Software/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources index dd8e5a9f2..dea48629b 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources and b/Software/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/54.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/54.snap index 7fcdee9a7..d10b960b0 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/54.snap and b/Software/.metadata/.plugins/org.eclipse.core.resources/54.snap differ diff --git a/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi b/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi index b5bee5ea9..866a4d44c 100644 --- a/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi +++ b/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi @@ -1,10 +1,10 @@ - - + + activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration ModelMigrationProcessor.001 activeSchemeId:com.ti.ccstudio.ui.keyBindingScheme - + @@ -13,9 +13,9 @@ topLevel shellMaximized - - - + + + persp.actionSet:org.eclipse.ui.cheatsheets.actionSet persp.actionSet:org.eclipse.rse.core.search.searchActionSet @@ -65,72 +65,72 @@ persp.newWizSC:org.eclipse.rtsc.builddefinitions.dspbios.ui.DSPBIOSCreateNew persp.newWizSC:org.eclipse.rtsc.xdctools.ui.cdt.wizards.configfile.RTSCConfigFileWizard persp.showIn:org.eclipse.tm.terminal.view.ui.TerminalsView - - - - + + + + - - + + - - - - + + + + - - - - - + + + + + - - - - - - - - + + + + + + + + - - - - - + + + + + - - + + - - - + + + - + General C/C++ Team - - - - - - - - - + + + + + + + + + - + persp.actionSet:org.eclipse.ui.cheatsheets.actionSet persp.actionSet:org.eclipse.rse.core.search.searchActionSet @@ -177,48 +177,48 @@ persp.actionSet:com.ti.dvt.rovsupport persp.actionSet:com.ti.dvt.via.plugin.ActionSet persp.showIn:org.eclipse.tm.terminal.view.ui.TerminalsView - - - + + + - - - - + + + + - - - - - + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - + + + - + Analysis Views - + @@ -227,7889 +227,7980 @@ - - - - + + + + - + View categoryTag:Help - + View categoryTag:General - + ViewMenu menuContribution:menu - + - + View categoryTag:Help - - - + + + active - noFocus - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + + menuContribution:popup + popup:#OverviewRulerContext + + + menuContribution:popup + popup:#CEditorContext + popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext + popup:#AbstractTextEditorContext + + + menuContribution:popup + popup:#CEditorRulerContext + popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext + popup:#AbstractTextEditorRulerContext + + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + + menuContribution:popup + popup:#OverviewRulerContext + + + menuContribution:popup + popup:#CEditorContext + popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext + popup:#AbstractTextEditorContext + + + menuContribution:popup + popup:#CEditorRulerContext + popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext + popup:#AbstractTextEditorRulerContext + + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide active - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.debug.ui.SourceNotFoundEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.ui.cmdFileEditor removeOnHide - + menuContribution:popup popup:#ASMEditorContext popup:com.ti.ccstudio.ui.cmdFileEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#ASMEditorRulerContext popup:com.ti.ccstudio.ui.cmdFileEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + + menuContribution:popup + popup:#OverviewRulerContext + + + menuContribution:popup + popup:#CEditorContext + popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext + popup:#AbstractTextEditorContext + + + menuContribution:popup + popup:#CEditorRulerContext + popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext + popup:#AbstractTextEditorRulerContext + + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.debug.ui.SourceNotFoundEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.debug.ui.SourceNotFoundEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.ui.DefaultTextEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide activeOnClose - + + menuContribution:popup + popup:#CEditorContext + popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext + popup:#AbstractTextEditorContext + + + menuContribution:popup + popup:#CEditorRulerContext + popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext + popup:#AbstractTextEditorRulerContext + + + menuContribution:popup + popup:#OverviewRulerContext + + + + + Editor + org.eclipse.cdt.ui.editor.CEditor + removeOnHide + + menuContribution:popup + popup:#CEditorContext + popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext + popup:#AbstractTextEditorContext + + + menuContribution:popup + popup:#CEditorRulerContext + popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext + popup:#AbstractTextEditorRulerContext + + + menuContribution:popup + popup:#OverviewRulerContext + + + + + Editor + org.eclipse.cdt.ui.editor.CEditor + removeOnHide + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + org.eclipse.e4.primaryDataStack EditorStack - - - + + + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.ui.MessageConsole.#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + - + View categoryTag:Code Composer Studio - + ViewMenu menuContribution:menu - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + ViewMenu menuContribution:menu - + - + View categoryTag:Code Composer Studio - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + - + View categoryTag:Debug - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + - + View categoryTag:Debug - + View categoryTag:Grace - + View categoryTag:RTSC - + ViewMenu menuContribution:menu - + - + View categoryTag:Debug - + View categoryTag:General highlighted - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + - + View categoryTag:Other - + ViewMenu menuContribution:menu - + - + View categoryTag:C/C++ - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.cdt.ui.callHierarchy - + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.ui.views.ProgressView - + menuContribution:popup popup:org.eclipse.ui.views.ProgressView - + menuContribution:popup popup:org.eclipse.ui.views.ProgressView - + - + View categoryTag:C/C++ - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy.members - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy.members - + - + View categoryTag:Analysis Views - + ViewMenu menuContribution:menu - + - + View categoryTag:Team - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.team.ui.GenericHistoryView - + - - + + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - - + + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Draggable - + Draggable - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - - + + Opaque - + Opaque - + Opaque - + Draggable - + Draggable - + toolbarSeparator - + - + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + stretch SHOW_RESTORE_MENU - + Draggable HIDEABLE SHOW_RESTORE_MENU - - + + stretch - + Draggable - + Draggable - - + + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - - + + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration platform:win32 - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration platform:win32 - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - - - - - - - - + + + + + + + + + + + - - - - - + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Editor - + View categoryTag:C/C++ - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Make - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:General - + View categoryTag:Help - + View categoryTag:Connections - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:General - + View categoryTag:General - + View categoryTag:Team - + View categoryTag:Team - + View categoryTag:Terminal - + View categoryTag:Other - + View categoryTag:General - + View categoryTag:General - + View categoryTag:Help - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:General - + View categoryTag:DVT - + View categoryTag:Analysis Views - + View categoryTag:DVT - + View categoryTag:EnergyTrace - + View categoryTag:Analysis Views - + View categoryTag:Profiling - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:UIA - + View categoryTag:Grace - + View categoryTag:Other - + View categoryTag:RTSC - + View categoryTag:RTSC - + View categoryTag:RTSC - - - - - + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - + + + - - - + + + - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c b/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c index 25f9bcb3d..0eb5a1158 100644 --- a/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c +++ b/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c @@ -475,10 +475,13 @@ void Stub_ProgressRequest(MessageContainer* requestContainer) //Head_Write_IO_Reg(Script_Slave_Add, HIGH); } */ + if(Write_Buf[0] >=0xF0) // write { // write , Write_Buf[0] bit number 0..15 , Write_Buf[1] 0 or 1 Write_Buf[1] = Write_Buf[1] & 0x01; + Write_Buf[0] &=0x0f; + if(Script_Slave_Add == 0x40) { if(Write_Buf[1] == 0x01) -- cgit v1.3.1 From 2980ba8d1a13f68fef90c40e3a2814cc4db7bc58 Mon Sep 17 00:00:00 2001 From: Avi Levkovich Date: Sun, 29 Mar 2020 16:10:01 +0300 Subject: update head i/o script --- .../Embedded.1560423654045.pdom | Bin 17899520 -> 17948672 bytes .../.history/1/50347878be71001a1f70833eb9ed7011 | 26 + .../.history/1/a00c3778be71001a1f70833eb9ed7011 | 26 + .../.history/10/50bf8107be71001a1f70833eb9ed7011 | 36 + .../.history/11/e0a74679be71001a1f70833eb9ed7011 | 56 + .../.history/12/000fec06be71001a1f70833eb9ed7011 | 22 + .../.history/12/3055d907be71001a1f70833eb9ed7011 | 50 + .../.history/14/3087ef78be71001a1f70833eb9ed7011 | 57 + .../.history/14/80366405be71001a1f70833eb9ed7011 | 29 + .../.history/14/d0355b05be71001a1f70833eb9ed7011 | 15 + .../.history/16/10e83a79be71001a1f70833eb9ed7011 | 43 + .../.history/16/70452077be71001a1f70833eb9ed7011 | 85 + .../.history/17/70a75d78be71001a1f70833eb9ed7011 | 15 + .../.history/18/10aed806be71001a1f70833eb9ed7011 | 15 + .../.history/18/708a0507be71001a1f70833eb9ed7011 | 22 + .../.history/19/70aa5307be71001a1f70833eb9ed7011 | 15 + .../.history/19/90af3979be71001a1f70833eb9ed7011 | 50 + .../.history/1a/7063cd06be71001a1f70833eb9ed7011 | 15 + .../.history/1b/803e6f79be71001a1f70833eb9ed7011 | 43 + .../.history/1d/b0055605be71001a1f70833eb9ed7011 | 32 + .../.history/1e/90212d78be71001a1f70833eb9ed7011 | 38 + .../.history/1e/90cbe178be71001a1f70833eb9ed7011 | 26 + .../.history/1f/b0d98605be71001a1f70833eb9ed7011 | 62 + .../.history/1f/e0b17478be71001a1f70833eb9ed7011 | 26 + .../.history/20/50a57a78be71001a1f70833eb9ed7011 | 15 + .../.history/20/50c41807be71001a1f70833eb9ed7011 | 22 + .../.history/20/8083e306be71001a1f70833eb9ed7011 | 26 + .../.history/20/f0be1f79be71001a1f70833eb9ed7011 | 26 + .../.history/21/202be378be71001a1f70833eb9ed7011 | 15 + .../.history/21/40b17405be71001a1f70833eb9ed7011 | 29 + .../.history/21/5008a978be71001a1f70833eb9ed7011 | 32 + .../.history/21/50df1d78be71001a1f70833eb9ed7011 | 722 +++ .../.history/22/10f10677be71001a1f70833eb9ed7011 | 29 + .../.history/22/c0d94e05be71001a1f70833eb9ed7011 | 58 + .../.history/23/e04a5207be71001a1f70833eb9ed7011 | 26 + .../.history/23/e0bab178be71001a1f70833eb9ed7011 | 32 + .../.history/25/204b3179be71001a1f70833eb9ed7011 | 44 + .../.history/27/60096277be71001a1f70833eb9ed7011 | 62 + .../.history/28/00e4cc78be71001a1f70833eb9ed7011 | 32 + .../.history/29/f0de6d79be71001a1f70833eb9ed7011 | 50 + .../.history/2b/20453878be71001a1f70833eb9ed7011 | 15 + .../.history/2b/70bd0c77be71001a1f70833eb9ed7011 | 36 + .../.history/2c/40840277be71001a1f70833eb9ed7011 | 29 + .../.history/2c/c097d006be71001a1f70833eb9ed7011 | 38 + .../.history/2d/90c8de06be71001a1f70833eb9ed7011 | 15 + .../.history/2d/e0a87805be71001a1f70833eb9ed7011 | 38 + .../.history/2e/10f17779be71001a1f70833eb9ed7011 | 32 + .../.history/2e/a02a7305be71001a1f70833eb9ed7011 | 38 + .../.history/2f/00182907be71001a1f70833eb9ed7011 | 26 + .../.history/2f/5011e678be71001a1f70833eb9ed7011 | 15 + .../.history/3/10e3e406be71001a1f70833eb9ed7011 | 15 + .../.history/30/0083f178be71001a1f70833eb9ed7011 | 26 + .../.history/30/20ebf807be71001a1f70833eb9ed7011 | 866 ++++ .../.history/30/505ea607be71001a1f70833eb9ed7011 | 36 + .../.history/31/a0118007be71001a1f70833eb9ed7011 | 44 + .../.history/32/6074dc78be71001a1f70833eb9ed7011 | 15 + .../.history/33/10acd376be71001a1f70833eb9ed7011 | 26 + .../.history/33/606e9507be71001a1f70833eb9ed7011 | 36 + .../.history/33/60ac6d05be71001a1f70833eb9ed7011 | 26 + .../.history/35/80853607be71001a1f70833eb9ed7011 | 22 + .../.history/35/b0eff476be71001a1f70833eb9ed7011 | 50 + .../.history/35/f07d9279be71001a1f70833eb9ed7011 | 866 ++++ .../.history/36/40fbaf07be71001a1f70833eb9ed7011 | 56 + .../.history/36/508c5705be71001a1f70833eb9ed7011 | 22 + .../.history/36/70e39405be71001a1f70833eb9ed7011 | 85 + .../.history/37/a0adae78be71001a1f70833eb9ed7011 | 22 + .../.history/38/00336f05be71001a1f70833eb9ed7011 | 15 + .../.history/3a/70014f78be71001a1f70833eb9ed7011 | 50 + .../.history/3a/70146c07be71001a1f70833eb9ed7011 | 26 + .../.history/3a/b0358a78be71001a1f70833eb9ed7011 | 15 + .../.history/3a/d014db78be71001a1f70833eb9ed7011 | 26 + .../.history/3b/1013a877be71001a1f70833eb9ed7011 | 183 + .../.history/3b/50f32b06be71001a1f70833eb9ed7011 | 183 + .../.history/3b/60878805be71001a1f70833eb9ed7011 | 57 + .../.history/3b/b0080b07be71001a1f70833eb9ed7011 | 22 + .../.history/3d/7027d706be71001a1f70833eb9ed7011 | 26 + .../.history/3d/f0150e07be71001a1f70833eb9ed7011 | 15 + .../.history/3e/d0d29d07be71001a1f70833eb9ed7011 | 50 + .../.history/3f/f0c3b678be71001a1f70833eb9ed7011 | 22 + .../.history/4/109b6d07be71001a1f70833eb9ed7011 | 15 + .../.history/4/20633378be71001a1f70833eb9ed7011 | 38 + .../.history/4/d00c4107be71001a1f70833eb9ed7011 | 26 + .../.history/4/d0de1e07be71001a1f70833eb9ed7011 | 32 + .../.history/40/00113f07be71001a1f70833eb9ed7011 | 15 + .../.history/40/b01cd807be71001a1f70833eb9ed7011 | 56 + .../.history/40/d0e3b506be71001a1f70833eb9ed7011 | 15 + .../.history/41/403f4079be71001a1f70833eb9ed7011 | 36 + .../.history/41/f0326678be71001a1f70833eb9ed7011 | 15 + .../.history/42/6088ea06be71001a1f70833eb9ed7011 | 32 + .../.history/43/00fa2d07be71001a1f70833eb9ed7011 | 22 + .../.history/43/70fa6478be71001a1f70833eb9ed7011 | 26 + .../.history/44/00080207be71001a1f70833eb9ed7011 | 15 + .../.history/45/80567178be71001a1f70833eb9ed7011 | 26 + .../.history/45/d0ae6879be71001a1f70833eb9ed7011 | 50 + .../.history/46/10bcac06be71001a1f70833eb9ed7011 | 38 + .../.history/46/4084b406be71001a1f70833eb9ed7011 | 26 + .../.history/46/60976e78be71001a1f70833eb9ed7011 | 32 + .../.history/46/e0cf6f78be71001a1f70833eb9ed7011 | 22 + .../.history/47/806be107be71001a1f70833eb9ed7011 | 38 + .../.history/48/60660879be71001a1f70833eb9ed7011 | 15 + .../.history/48/70dd0c07be71001a1f70833eb9ed7011 | 26 + .../.history/48/c057f378be71001a1f70833eb9ed7011 | 15 + .../.history/48/e0211577be71001a1f70833eb9ed7011 | 57 + .../.history/49/0027ad78be71001a1f70833eb9ed7011 | 32 + .../.history/49/303a2207be71001a1f70833eb9ed7011 | 32 + .../.history/49/90b06b05be71001a1f70833eb9ed7011 | 43 + .../.history/49/b00b0e79be71001a1f70833eb9ed7011 | 32 + .../.history/49/b052d506be71001a1f70833eb9ed7011 | 15 + .../.history/49/e08d8077be71001a1f70833eb9ed7011 | 162 + .../.history/4a/b0240177be71001a1f70833eb9ed7011 | 38 + .../.history/4d/30a82e78be71001a1f70833eb9ed7011 | 29 + .../.history/4d/50c50906be71001a1f70833eb9ed7011 | 57 + .../.history/4d/d0dfce78be71001a1f70833eb9ed7011 | 22 + .../.history/4f/0086e707be71001a1f70833eb9ed7011 | 22 + .../.history/4f/e0af6205be71001a1f70833eb9ed7011 | 38 + .../.history/50/20a90907be71001a1f70833eb9ed7011 | 32 + .../.history/53/00216607be71001a1f70833eb9ed7011 | 22 + .../.history/53/a0e9a478be71001a1f70833eb9ed7011 | 26 + .../.history/53/e073dd07be71001a1f70833eb9ed7011 | 50 + .../.history/54/d0d73407be71001a1f70833eb9ed7011 | 32 + .../.history/55/f00fd478be71001a1f70833eb9ed7011 | 15 + .../.history/56/1052e276be71001a1f70833eb9ed7011 | 38 + .../.history/56/1090dd06be71001a1f70833eb9ed7011 | 26 + .../.history/56/e0a9da06be71001a1f70833eb9ed7011 | 26 + .../.history/57/60f25077be71001a1f70833eb9ed7011 | 410 ++ .../.history/58/20a31006be71001a1f70833eb9ed7011 | 43 + .../.history/58/400ac376be71001a1f70833eb9ed7011 | 211 + .../.history/58/40d65905be71001a1f70833eb9ed7011 | 26 + .../.history/58/5054c678be71001a1f70833eb9ed7011 | 22 + .../.history/58/704e5d77be71001a1f70833eb9ed7011 | 106 + .../.history/58/e046fa76be71001a1f70833eb9ed7011 | 26 + .../.history/5b/008f7278be71001a1f70833eb9ed7011 | 15 + .../.history/5b/60dd4407be71001a1f70833eb9ed7011 | 26 + .../.history/5b/b0076878be71001a1f70833eb9ed7011 | 26 + .../.history/5c/c087f776be71001a1f70833eb9ed7011 | 43 + .../.history/5d/80910577be71001a1f70833eb9ed7011 | 38 + .../.history/5d/d04f6f77be71001a1f70833eb9ed7011 | 146 + .../.history/5d/e0ed6a78be71001a1f70833eb9ed7011 | 26 + .../.history/5e/30868d77be71001a1f70833eb9ed7011 | 50 + .../.history/5e/50b94779be71001a1f70833eb9ed7011 | 50 + .../.history/6/900ace07be71001a1f70833eb9ed7011 | 188 + .../.history/61/e0f74a07be71001a1f70833eb9ed7011 | 15 + .../.history/63/10fba578be71001a1f70833eb9ed7011 | 15 + .../.history/63/608a3d07be71001a1f70833eb9ed7011 | 26 + .../.history/63/a0dbd078be71001a1f70833eb9ed7011 | 26 + .../.history/64/604cf406be71001a1f70833eb9ed7011 | 26 + .../.history/65/00d0b107be71001a1f70833eb9ed7011 | 50 + .../.history/65/90c64a79be71001a1f70833eb9ed7011 | 15 + .../.history/65/90f16907be71001a1f70833eb9ed7011 | 15 + .../.history/65/d090ae06be71001a1f70833eb9ed7011 | 29 + .../.history/66/30406978be71001a1f70833eb9ed7011 | 15 + .../.history/66/304e3d78be71001a1f70833eb9ed7011 | 26 + .../.history/66/3070de78be71001a1f70833eb9ed7011 | 26 + .../.history/66/60869706be71001a1f70833eb9ed7011 | 632 +++ .../.history/66/70934207be71001a1f70833eb9ed7011 | 15 + .../.history/67/40146278be71001a1f70833eb9ed7011 | 26 + .../.history/67/6092d778be71001a1f70833eb9ed7011 | 26 + .../.history/67/c0ad3e78be71001a1f70833eb9ed7011 | 15 + .../.history/69/006e3379be71001a1f70833eb9ed7011 | 36 + .../.history/69/b0037407be71001a1f70833eb9ed7011 | 32 + .../.history/69/f08eaa78be71001a1f70833eb9ed7011 | 22 + .../.history/6a/60193b07be71001a1f70833eb9ed7011 | 22 + .../.history/6d/6036d405be71001a1f70833eb9ed7011 | 104 + .../.history/6e/609a6407be71001a1f70833eb9ed7011 | 32 + .../.history/6f/20f77907be71001a1f70833eb9ed7011 | 15 + .../.history/6f/c024c976be71001a1f70833eb9ed7011 | 36 + .../.history/7/60942a79be71001a1f70833eb9ed7011 | 44 + .../.history/7/907cc106be71001a1f70833eb9ed7011 | 15 + .../.history/7/e02a0407be71001a1f70833eb9ed7011 | 32 + .../.history/70/4054fe78be71001a1f70833eb9ed7011 | 26 + .../.history/72/70c00206be71001a1f70833eb9ed7011 | 162 + .../.history/72/c0992307be71001a1f70833eb9ed7011 | 22 + .../.history/73/601ccd76be71001a1f70833eb9ed7011 | 32 + .../.history/74/70b0db05be71001a1f70833eb9ed7011 | 62 + .../.history/74/70c4a806be71001a1f70833eb9ed7011 | 29 + .../.history/74/801d7107be71001a1f70833eb9ed7011 | 15 + .../.history/74/d0c75b77be71001a1f70833eb9ed7011 | 104 + .../.history/74/d0d8e478be71001a1f70833eb9ed7011 | 26 + .../.history/76/30274605be71001a1f70833eb9ed7011 | 211 + .../.history/77/202fca06be71001a1f70833eb9ed7011 | 50 + .../.history/77/e003cc06be71001a1f70833eb9ed7011 | 26 + .../.history/78/d05b6179be71001a1f70833eb9ed7011 | 204 + .../.history/78/f0292978be71001a1f70833eb9ed7011 | 57 + .../.history/79/40a65507be71001a1f70833eb9ed7011 | 26 + .../.history/79/e05d0b77be71001a1f70833eb9ed7011 | 44 + .../.history/79/f06e5c78be71001a1f70833eb9ed7011 | 26 + .../.history/79/f0870106be71001a1f70833eb9ed7011 | 152 + .../.history/7a/70d0e878be71001a1f70833eb9ed7011 | 15 + .../.history/7a/c0315e07be71001a1f70833eb9ed7011 | 57 + .../.history/7b/80cdfb76be71001a1f70833eb9ed7011 | 15 + .../.history/7b/f097e778be71001a1f70833eb9ed7011 | 26 + .../.history/7c/00a3ce76be71001a1f70833eb9ed7011 | 22 + .../.history/7c/d001b106be71001a1f70833eb9ed7011 | 26 + .../.history/7d/3089d176be71001a1f70833eb9ed7011 | 15 + .../.history/7d/b00e9305be71001a1f70833eb9ed7011 | 86 + .../.history/7d/f0bd6f07be71001a1f70833eb9ed7011 | 26 + .../.history/7e/80a8c806be71001a1f70833eb9ed7011 | 56 + .../.history/7f/102e5f78be71001a1f70833eb9ed7011 | 26 + .../.history/7f/f0754678be71001a1f70833eb9ed7011 | 26 + .../.history/8/70debc78be71001a1f70833eb9ed7011 | 26 + .../.history/8/808b7d78be71001a1f70833eb9ed7011 | 26 + .../.history/81/c04b7279be71001a1f70833eb9ed7011 | 38 + .../.history/82/f00c1f77be71001a1f70833eb9ed7011 | 86 + .../.history/83/10af8878be71001a1f70833eb9ed7011 | 26 + .../.history/84/80f68677be71001a1f70833eb9ed7011 | 62 + .../.history/84/c0e3ed06be71001a1f70833eb9ed7011 | 26 + .../.history/85/c0ffe376be71001a1f70833eb9ed7011 | 29 + .../.history/86/20b3f678be71001a1f70833eb9ed7011 | 32 + .../.history/87/60227807be71001a1f70833eb9ed7011 | 26 + .../.history/87/60348105be71001a1f70833eb9ed7011 | 36 + .../.history/87/b009bb78be71001a1f70833eb9ed7011 | 22 + .../.history/88/7009dc06be71001a1f70833eb9ed7011 | 15 + .../.history/88/70117678be71001a1f70833eb9ed7011 | 15 + .../.history/88/c090e606be71001a1f70833eb9ed7011 | 26 + .../.history/89/00f1f006be71001a1f70833eb9ed7011 | 26 + .../.history/8c/00afc078be71001a1f70833eb9ed7011 | 32 + .../.history/8c/10422c79be71001a1f70833eb9ed7011 | 36 + .../.history/8c/304a4907be71001a1f70833eb9ed7011 | 26 + .../.history/8c/d01a6377be71001a1f70833eb9ed7011 | 57 + .../.history/8f/9030a406be71001a1f70833eb9ed7011 | 57 + .../.history/9/409b1377be71001a1f70833eb9ed7011 | 62 + .../.history/91/007b5707be71001a1f70833eb9ed7011 | 15 + .../.history/91/3077c878be71001a1f70833eb9ed7011 | 32 + .../.history/92/304fe006be71001a1f70833eb9ed7011 | 26 + .../.history/92/e04b0279be71001a1f70833eb9ed7011 | 26 + .../.history/93/802f7a05be71001a1f70833eb9ed7011 | 29 + .../.history/97/301c2707be71001a1f70833eb9ed7011 | 22 + .../.history/97/a0315d05be71001a1f70833eb9ed7011 | 26 + .../.history/98/90b8b706be71001a1f70833eb9ed7011 | 26 + .../.history/9a/b06c2a06be71001a1f70833eb9ed7011 | 170 + .../.history/9a/f0fd5978be71001a1f70833eb9ed7011 | 26 + .../.history/9b/6031fc78be71001a1f70833eb9ed7011 | 15 + .../.history/9b/b0932179be71001a1f70833eb9ed7011 | 15 + .../.history/9c/b050d076be71001a1f70833eb9ed7011 | 26 + .../.history/9c/b0a8df78be71001a1f70833eb9ed7011 | 15 + .../.history/9c/b0d7a407be71001a1f70833eb9ed7011 | 44 + .../.history/9d/4048be06be71001a1f70833eb9ed7011 | 29 + .../.history/a/909abc06be71001a1f70833eb9ed7011 | 38 + .../.history/a0/b0df3e79be71001a1f70833eb9ed7011 | 44 + .../.history/a0/f0f5bf06be71001a1f70833eb9ed7011 | 26 + .../.history/a1/d017d107be71001a1f70833eb9ed7011 | 204 + .../.history/a3/604a6079be71001a1f70833eb9ed7011 | 188 + .../.history/a3/7088b206be71001a1f70833eb9ed7011 | 15 + .../.history/a3/e064a706be71001a1f70833eb9ed7011 | 38 + .../.history/a6/40c2fd06be71001a1f70833eb9ed7011 | 44 + .../.history/a7/303fb906be71001a1f70833eb9ed7011 | 15 + .../.history/aa/00795277be71001a1f70833eb9ed7011 | 463 ++ .../.history/ab/40a99906be71001a1f70833eb9ed7011 | 722 +++ .../.history/ab/502b3b78be71001a1f70833eb9ed7011 | 15 + .../.history/ab/90267607be71001a1f70833eb9ed7011 | 22 + .../.history/ac/40b85e05be71001a1f70833eb9ed7011 | 15 + .../.history/ad/200bd605be71001a1f70833eb9ed7011 | 106 + .../.history/af/a0ebf778be71001a1f70833eb9ed7011 | 22 + .../.history/b/10ccd306be71001a1f70833eb9ed7011 | 26 + .../.history/b/2065c705be71001a1f70833eb9ed7011 | 410 ++ .../.history/b/60acde07be71001a1f70833eb9ed7011 | 43 + .../.history/b/c0f4c478be71001a1f70833eb9ed7011 | 32 + .../.history/b0/20658678be71001a1f70833eb9ed7011 | 36 + .../.history/b0/e0184979be71001a1f70833eb9ed7011 | 26 + .../.history/b1/e0941c07be71001a1f70833eb9ed7011 | 22 + .../.history/b2/3067a178be71001a1f70833eb9ed7011 | 32 + .../.history/b2/90ef1607be71001a1f70833eb9ed7011 | 32 + .../.history/b2/d0663207be71001a1f70833eb9ed7011 | 22 + .../.history/b3/40471b78be71001a1f70833eb9ed7011 | 632 +++ .../.history/b4/90666078be71001a1f70833eb9ed7011 | 15 + .../.history/b5/70b78478be71001a1f70833eb9ed7011 | 44 + .../.history/b6/c0923907be71001a1f70833eb9ed7011 | 32 + .../.history/b7/60ca2778be71001a1f70833eb9ed7011 | 62 + .../.history/b8/d0414d07be71001a1f70833eb9ed7011 | 26 + .../.history/b9/40ac9c78be71001a1f70833eb9ed7011 | 32 + .../.history/ba/40607f78be71001a1f70833eb9ed7011 | 15 + .../.history/bb/1040d978be71001a1f70833eb9ed7011 | 15 + .../.history/bb/b03e0806be71001a1f70833eb9ed7011 | 62 + .../.history/bc/50f0e706be71001a1f70833eb9ed7011 | 15 + .../.history/bc/c0e58e77be71001a1f70833eb9ed7011 | 43 + .../.history/c/d0eda278be71001a1f70833eb9ed7011 | 22 + .../.history/c0/f0a9a206be71001a1f70833eb9ed7011 | 62 + .../.history/c2/80cf0007be71001a1f70833eb9ed7011 | 26 + .../.history/c2/80d9ed78be71001a1f70833eb9ed7011 | 62 + .../.history/c5/0041b407be71001a1f70833eb9ed7011 | 26 + .../.history/c5/50ab7379be71001a1f70833eb9ed7011 | 29 + .../.history/c5/6011ef05be71001a1f70833eb9ed7011 | 155 + .../.history/c6/30c48807be71001a1f70833eb9ed7011 | 44 + .../.history/c6/600f5b78be71001a1f70833eb9ed7011 | 15 + .../.history/c6/f0005007be71001a1f70833eb9ed7011 | 15 + .../.history/c7/40db6107be71001a1f70833eb9ed7011 | 15 + .../.history/c8/003ebe78be71001a1f70833eb9ed7011 | 15 + .../.history/c9/d0cef706be71001a1f70833eb9ed7011 | 26 + .../.history/cb/30e03007be71001a1f70833eb9ed7011 | 32 + .../.history/cb/f0599e78be71001a1f70833eb9ed7011 | 22 + .../.history/cd/5043ef06be71001a1f70833eb9ed7011 | 15 + .../.history/d0/60266c78be71001a1f70833eb9ed7011 | 15 + .../.history/d1/c0355278be71001a1f70833eb9ed7011 | 15 + .../.history/d2/a0234878be71001a1f70833eb9ed7011 | 15 + .../.history/d2/d0103578be71001a1f70833eb9ed7011 | 29 + .../.history/d4/70d67077be71001a1f70833eb9ed7011 | 155 + .../.history/d4/90a79f07be71001a1f70833eb9ed7011 | 43 + .../.history/d7/50351b07be71001a1f70833eb9ed7011 | 32 + .../.history/d8/30c5c776be71001a1f70833eb9ed7011 | 58 + .../.history/d8/709a2c07be71001a1f70833eb9ed7011 | 32 + .../.history/d8/80b2b578be71001a1f70833eb9ed7011 | 32 + .../.history/d9/e0436807be71001a1f70833eb9ed7011 | 26 + .../.history/db/20f2e207be71001a1f70833eb9ed7011 | 29 + .../.history/dc/603e2007be71001a1f70833eb9ed7011 | 22 + .../.history/dc/80502a07be71001a1f70833eb9ed7011 | 15 + .../.history/dc/90a0b507be71001a1f70833eb9ed7011 | 15 + .../.history/dc/e0026a05be71001a1f70833eb9ed7011 | 50 + .../.history/dd/e0a14d78be71001a1f70833eb9ed7011 | 56 + .../.history/df/40fd5078be71001a1f70833eb9ed7011 | 26 + .../.history/df/b063ed05be71001a1f70833eb9ed7011 | 146 + .../.history/e/601ed206be71001a1f70833eb9ed7011 | 29 + .../.history/e/90a3f906be71001a1f70833eb9ed7011 | 15 + .../.history/e0/20aab978be71001a1f70833eb9ed7011 | 32 + .../.history/e2/f0010079be71001a1f70833eb9ed7011 | 15 + .../.history/e4/8041b378be71001a1f70833eb9ed7011 | 22 + .../.history/e5/00d3f506be71001a1f70833eb9ed7011 | 15 + .../.history/e5/b05cc278be71001a1f70833eb9ed7011 | 22 + .../.history/e6/c036a2ffbd71001a1f70833eb9ed7011 | 813 +++ .../.history/e8/40125005be71001a1f70833eb9ed7011 | 36 + .../.history/e8/d021ff06be71001a1f70833eb9ed7011 | 36 + .../.history/e8/d0736378be71001a1f70833eb9ed7011 | 15 + .../.history/e8/f0137a79be71001a1f70833eb9ed7011 | 22 + .../.history/e9/404f6779be71001a1f70833eb9ed7011 | 56 + .../.history/e9/f04bca78be71001a1f70833eb9ed7011 | 22 + .../.history/eb/604e4707be71001a1f70833eb9ed7011 | 15 + .../.history/ec/d0f23978be71001a1f70833eb9ed7011 | 26 + .../.history/ed/6065a677be71001a1f70833eb9ed7011 | 170 + .../.history/ee/30971679be71001a1f70833eb9ed7011 | 22 + .../.history/ef/90430f06be71001a1f70833eb9ed7011 | 50 + .../.history/ef/e0fce106be71001a1f70833eb9ed7011 | 15 + .../.history/f/807b5678be71001a1f70833eb9ed7011 | 38 + .../.history/f0/002c4478be71001a1f70833eb9ed7011 | 29 + .../.history/f3/f0e8dc05be71001a1f70833eb9ed7011 | 57 + .../.history/f7/7026e607be71001a1f70833eb9ed7011 | 32 + .../.history/f9/10927e77be71001a1f70833eb9ed7011 | 152 + .../.history/f9/80f34278be71001a1f70833eb9ed7011 | 38 + .../.history/f9/f060c905be71001a1f70833eb9ed7011 | 463 ++ .../.history/fb/10db5778be71001a1f70833eb9ed7011 | 29 + .../.history/fb/20ab5c07be71001a1f70833eb9ed7011 | 62 + .../.history/fb/a05f7f05be71001a1f70833eb9ed7011 | 44 + .../.history/fc/70408977be71001a1f70833eb9ed7011 | 57 + .../.history/fc/b032d576be71001a1f70833eb9ed7011 | 15 + .../.history/fd/9035fa78be71001a1f70833eb9ed7011 | 26 + .../.history/fe/9050f206be71001a1f70833eb9ed7011 | 15 + .../.history/fe/a0546007be71001a1f70833eb9ed7011 | 26 + .../.history/ff/b0e32507be71001a1f70833eb9ed7011 | 32 + .../Embedded/.indexes/33/4a/f5/26/history.index | Bin 3122 -> 3218 bytes .../Embedded/.indexes/33/4a/f5/34/history.index | Bin 3154 -> 3250 bytes .../Embedded/.indexes/33/4a/f5/3f/history.index | Bin 3148 -> 3244 bytes .../Embedded/.indexes/33/4a/f5/65/history.index | Bin 3128 -> 3224 bytes .../Embedded/.indexes/33/4a/f5/8/history.index | Bin 3134 -> 3230 bytes .../Embedded/.indexes/33/4a/f5/8c/history.index | Bin 3140 -> 3236 bytes .../Embedded/.indexes/33/4a/f5/b/history.index | Bin 3130 -> 3226 bytes .../Embedded/.indexes/33/4a/f5/b2/history.index | Bin 3144 -> 3240 bytes .../Embedded/.indexes/33/4a/f5/cb/history.index | Bin 3134 -> 3230 bytes .../Embedded/.indexes/33/4a/f5/ce/history.index | Bin 3136 -> 3232 bytes .../Embedded/.indexes/33/4a/f5/e5/history.index | Bin 3128 -> 3224 bytes .../Embedded/.indexes/33/4a/f5/f9/history.index | Bin 3144 -> 3240 bytes .../Embedded/.indexes/33/4a/f5/fe/history.index | Bin 3138 -> 3234 bytes .../Embedded/.indexes/33/4a/history.index | Bin 3108 -> 3204 bytes .../Embedded/.indexes/33/99/36/history.index | Bin 3124 -> 3220 bytes .../Embedded/.indexes/33/99/50/history.index | Bin 3124 -> 3220 bytes .../Embedded/.indexes/33/99/8c/history.index | Bin 3120 -> 3216 bytes .../Embedded/.indexes/33/99/98/history.index | Bin 3104 -> 3200 bytes .../Embedded/.indexes/33/99/aa/history.index | Bin 3112 -> 3208 bytes .../Embedded/.indexes/33/99/c3/history.index | Bin 3112 -> 3208 bytes .../Embedded/.indexes/33/99/c8/history.index | Bin 3112 -> 3208 bytes .../Embedded/.indexes/33/99/d6/history.index | Bin 6209 -> 6401 bytes .../Embedded/.indexes/33/99/fa/history.index | Bin 3108 -> 3204 bytes .../Embedded/.indexes/33/9d/c0/history.index | Bin 3138 -> 3234 bytes .../Embedded/.indexes/33/9d/cb/history.index | Bin 3126 -> 3222 bytes .../Embedded/.indexes/33/b/16/history.index | Bin 3114 -> 3210 bytes .../Embedded/.indexes/33/b/37/history.index | Bin 3110 -> 3206 bytes .../Embedded/.indexes/33/b/4a/history.index | Bin 3130 -> 3226 bytes .../Embedded/.indexes/33/b/4d/history.index | Bin 3112 -> 3208 bytes .../Embedded/.indexes/33/b/5f/history.index | Bin 3116 -> 3212 bytes .../Embedded/.indexes/33/b/c4/history.index | Bin 3120 -> 3216 bytes .../Embedded/.indexes/33/b/cc/history.index | Bin 3108 -> 3204 bytes .../Embedded/.indexes/33/d5/1a/history.index | Bin 3122 -> 3218 bytes .../Embedded/.indexes/33/d5/23/a2/51/history.index | Bin 1606 -> 1702 bytes .../Embedded/.indexes/33/d5/23/a2/65/history.index | Bin 2862 -> 2958 bytes .../Embedded/.indexes/33/d5/23/a2/73/history.index | Bin 2850 -> 2946 bytes .../Embedded/.indexes/33/d5/23/a2/history.index | Bin 3130 -> 3226 bytes .../Embedded/.indexes/33/d5/23/b5/history.index | Bin 3134 -> 3230 bytes .../Embedded/.indexes/33/d5/23/history.index | Bin 3116 -> 3212 bytes .../Embedded/.indexes/33/d5/24/6b/history.index | Bin 3138 -> 3234 bytes .../Embedded/.indexes/33/d5/24/a/history.index | Bin 3126 -> 3222 bytes .../Embedded/.indexes/33/d5/24/de/b8/history.index | Bin 3138 -> 3234 bytes .../Embedded/.indexes/33/d5/24/de/history.index | Bin 3124 -> 3220 bytes .../Embedded/.indexes/33/d5/24/e9/history.index | Bin 3134 -> 3230 bytes .../Embedded/.indexes/33/d5/24/history.index | Bin 3106 -> 3202 bytes .../Embedded/.indexes/33/d5/42/history.index | Bin 3110 -> 3206 bytes .../Embedded/.indexes/33/d5/43/history.index | Bin 3110 -> 3206 bytes .../Embedded/.indexes/33/d5/70/86/history.index | Bin 3134 -> 3230 bytes .../Embedded/.indexes/33/d5/70/history.index | Bin 3122 -> 3218 bytes .../Embedded/.indexes/33/d5/83/history.index | Bin 3124 -> 3220 bytes .../Embedded/.indexes/33/d5/8c/history.index | Bin 3104 -> 3200 bytes .../Embedded/.indexes/33/d5/91/53/0/history.index | Bin 3164 -> 3260 bytes .../Embedded/.indexes/33/d5/91/53/29/history.index | Bin 3178 -> 3274 bytes .../Embedded/.indexes/33/d5/91/53/51/history.index | Bin 3180 -> 3276 bytes .../Embedded/.indexes/33/d5/91/53/7e/history.index | Bin 3202 -> 3298 bytes .../Embedded/.indexes/33/d5/91/53/87/history.index | Bin 3186 -> 3282 bytes .../Embedded/.indexes/33/d5/91/53/94/history.index | Bin 3192 -> 3288 bytes .../Embedded/.indexes/33/d5/91/53/96/history.index | Bin 3180 -> 3276 bytes .../Embedded/.indexes/33/d5/91/53/bd/history.index | Bin 3186 -> 3282 bytes .../Embedded/.indexes/33/d5/91/53/history.index | Bin 3150 -> 3246 bytes .../Embedded/.indexes/33/d5/91/66/0/history.index | Bin 3176 -> 3272 bytes .../Embedded/.indexes/33/d5/91/66/67/history.index | Bin 3180 -> 3276 bytes .../Embedded/.indexes/33/d5/91/66/history.index | Bin 6297 -> 6489 bytes .../Embedded/.indexes/33/d5/91/8f/history.index | Bin 3148 -> 3244 bytes .../Embedded/.indexes/33/d5/91/9b/72/history.index | Bin 3168 -> 3264 bytes .../Embedded/.indexes/33/d5/91/9b/history.index | Bin 3150 -> 3246 bytes .../Embedded/.indexes/33/d5/91/af/history.index | Bin 3150 -> 3246 bytes .../Embedded/.indexes/33/d5/91/c1/history.index | Bin 3168 -> 3264 bytes .../Embedded/.indexes/33/d5/91/f/0/history.index | Bin 3166 -> 3262 bytes .../.indexes/33/d5/91/f/67/aa/history.index | Bin 3186 -> 3282 bytes .../Embedded/.indexes/33/d5/91/f/67/history.index | Bin 3170 -> 3266 bytes .../Embedded/.indexes/33/d5/91/f/6d/history.index | Bin 3164 -> 3260 bytes .../Embedded/.indexes/33/d5/91/f/80/history.index | Bin 3160 -> 3256 bytes .../Embedded/.indexes/33/d5/91/f/f3/history.index | Bin 3160 -> 3256 bytes .../Embedded/.indexes/33/d5/91/f/history.index | Bin 3152 -> 3248 bytes .../Embedded/.indexes/33/d5/91/history.index | Bin 3132 -> 3228 bytes .../Embedded/.indexes/33/d5/b1/history.index | Bin 3116 -> 3212 bytes .../Embedded/.indexes/33/d5/c2/3f/history.index | Bin 3128 -> 3224 bytes .../Embedded/.indexes/33/d5/c2/f2/history.index | Bin 3140 -> 3236 bytes .../Embedded/.indexes/33/d5/c2/history.index | Bin 3114 -> 3210 bytes .../Embedded/.indexes/33/d5/e5/history.index | Bin 3132 -> 3228 bytes .../Embedded/.indexes/33/d5/fd/history.index | Bin 3110 -> 3206 bytes .../.projects/Embedded/.indexes/33/history.index | Bin 6477 -> 6645 bytes .../Embedded/.indexes/99/50/history.index | Bin 186 -> 210 bytes .../org.eclipse.e4.workbench/workbench.xmi | 5404 ++++++++++---------- .../Embedded/Modules/Stubs_Handler/Progress.c | 60 +- 432 files changed, 22870 insertions(+), 2725 deletions(-) create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/50347878be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/a00c3778be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/50bf8107be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/e0a74679be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/000fec06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/3055d907be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/3087ef78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/80366405be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/d0355b05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/10e83a79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/70452077be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/70a75d78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/10aed806be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/708a0507be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/70aa5307be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/90af3979be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/7063cd06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/803e6f79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/b0055605be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/90212d78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/90cbe178be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/b0d98605be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/e0b17478be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/50a57a78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/50c41807be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/8083e306be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/f0be1f79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/202be378be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/40b17405be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/5008a978be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/50df1d78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/10f10677be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/c0d94e05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e04a5207be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e0bab178be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/204b3179be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/60096277be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/00e4cc78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/f0de6d79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/20453878be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/70bd0c77be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40840277be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/c097d006be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/90c8de06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/e0a87805be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/10f17779be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/a02a7305be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/00182907be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/5011e678be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/10e3e406be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/0083f178be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/20ebf807be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/505ea607be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/a0118007be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/6074dc78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/10acd376be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/606e9507be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/60ac6d05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/80853607be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/b0eff476be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/f07d9279be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/40fbaf07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/508c5705be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/70e39405be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/a0adae78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/00336f05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70014f78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70146c07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b0358a78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/d014db78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/1013a877be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/50f32b06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/60878805be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/b0080b07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/7027d706be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/f0150e07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/d0d29d07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f0c3b678be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/109b6d07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/20633378be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d00c4107be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d0de1e07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/00113f07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/b01cd807be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/d0e3b506be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/403f4079be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/f0326678be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/6088ea06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/00fa2d07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/70fa6478be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/00080207be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/80567178be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/d0ae6879be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/10bcac06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/4084b406be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/60976e78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/e0cf6f78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/806be107be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/60660879be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/70dd0c07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/c057f378be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/e0211577be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/0027ad78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/303a2207be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/90b06b05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b00b0e79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b052d506be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/e08d8077be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/b0240177be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/30a82e78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/50c50906be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/d0dfce78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/0086e707be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/e0af6205be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/20a90907be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/00216607be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/a0e9a478be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/e073dd07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/d0d73407be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/f00fd478be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/1052e276be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/1090dd06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/e0a9da06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/60f25077be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/20a31006be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/400ac376be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/40d65905be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/5054c678be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/704e5d77be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/e046fa76be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/008f7278be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/60dd4407be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/b0076878be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/c087f776be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/80910577be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/d04f6f77be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/e0ed6a78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/30868d77be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/50b94779be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/900ace07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/e0f74a07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/10fba578be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/608a3d07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/a0dbd078be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/604cf406be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/00d0b107be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/90c64a79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/90f16907be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/d090ae06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/30406978be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/304e3d78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/3070de78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/60869706be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/70934207be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/40146278be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/6092d778be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/c0ad3e78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/006e3379be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/b0037407be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/f08eaa78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/60193b07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/6036d405be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/609a6407be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/20f77907be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c024c976be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/60942a79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/907cc106be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/e02a0407be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/4054fe78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/70c00206be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/c0992307be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/601ccd76be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70b0db05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70c4a806be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/801d7107be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/d0c75b77be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/d0d8e478be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/30274605be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/202fca06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/e003cc06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/d05b6179be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/f0292978be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/40a65507be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/e05d0b77be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/f06e5c78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/f0870106be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/70d0e878be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/c0315e07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/80cdfb76be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/f097e778be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/00a3ce76be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/d001b106be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/3089d176be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/b00e9305be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/f0bd6f07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/80a8c806be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/102e5f78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/f0754678be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/70debc78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/808b7d78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/c04b7279be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/f00c1f77be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/10af8878be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/80f68677be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/c0e3ed06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/c0ffe376be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/20b3f678be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60227807be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60348105be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/b009bb78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/7009dc06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/70117678be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/c090e606be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/00f1f006be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/00afc078be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/10422c79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/304a4907be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/d01a6377be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/9030a406be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/409b1377be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/007b5707be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/3077c878be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/304fe006be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/e04b0279be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/802f7a05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/301c2707be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/a0315d05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/90b8b706be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/b06c2a06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0fd5978be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/6031fc78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/b0932179be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b050d076be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b0a8df78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b0d7a407be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/4048be06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/909abc06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/b0df3e79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/f0f5bf06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/d017d107be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/604a6079be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/7088b206be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/e064a706be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/40c2fd06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/303fb906be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/00795277be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/40a99906be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/502b3b78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/90267607be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/40b85e05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/200bd605be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/a0ebf778be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/10ccd306be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/2065c705be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/60acde07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/c0f4c478be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/20658678be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/e0184979be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/e0941c07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/3067a178be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/90ef1607be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/d0663207be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/40471b78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/90666078be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/70b78478be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/c0923907be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/60ca2778be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/d0414d07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/40ac9c78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/40607f78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/1040d978be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/b03e0806be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/50f0e706be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/c0e58e77be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/d0eda278be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/f0a9a206be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/80cf0007be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/80d9ed78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/0041b407be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/50ab7379be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/6011ef05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/30c48807be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/600f5b78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0005007be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/40db6107be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/003ebe78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/d0cef706be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30e03007be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f0599e78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/5043ef06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/60266c78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/c0355278be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a0234878be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/d0103578be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/70d67077be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90a79f07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/50351b07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/30c5c776be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/709a2c07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/80b2b578be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/e0436807be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/20f2e207be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/603e2007be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/80502a07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/90a0b507be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/e0026a05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/e0a14d78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/40fd5078be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/b063ed05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/601ed206be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/90a3f906be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/20aab978be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/f0010079be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/8041b378be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/00d3f506be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/b05cc278be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/c036a2ffbd71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/40125005be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/d021ff06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/d0736378be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/f0137a79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/404f6779be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/f04bca78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/604e4707be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/d0f23978be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/6065a677be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/30971679be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/90430f06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/e0fce106be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/807b5678be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/002c4478be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/f0e8dc05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/7026e607be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/10927e77be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/80f34278be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/f060c905be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/10db5778be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/20ab5c07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/a05f7f05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/70408977be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/b032d576be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/9035fa78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/9050f206be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/a0546007be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/b0e32507be71001a1f70833eb9ed7011 (limited to 'Software/Embedded_SW/Embedded/Modules') diff --git a/Software/.metadata/.plugins/org.eclipse.cdt.core/Embedded.1560423654045.pdom b/Software/.metadata/.plugins/org.eclipse.cdt.core/Embedded.1560423654045.pdom index 83b61e64f..54d5bf78f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.cdt.core/Embedded.1560423654045.pdom and b/Software/.metadata/.plugins/org.eclipse.cdt.core/Embedded.1560423654045.pdom differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/50347878be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/50347878be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/50347878be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/a00c3778be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/a00c3778be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/a00c3778be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/50bf8107be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/50bf8107be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/50bf8107be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/e0a74679be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/e0a74679be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/e0a74679be71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/000fec06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/000fec06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/000fec06be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/3055d907be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/3055d907be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/3055d907be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/3087ef78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/3087ef78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/3087ef78be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/80366405be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/80366405be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/80366405be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/d0355b05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/d0355b05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/d0355b05be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/10e83a79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/10e83a79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/10e83a79be71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/70452077be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/70452077be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/70452077be71001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/70a75d78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/70a75d78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/70a75d78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/10aed806be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/10aed806be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/10aed806be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/708a0507be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/708a0507be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/708a0507be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/70aa5307be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/70aa5307be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/70aa5307be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/90af3979be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/90af3979be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/90af3979be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/7063cd06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/7063cd06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/7063cd06be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/803e6f79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/803e6f79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/803e6f79be71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/b0055605be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/b0055605be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/b0055605be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/90212d78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/90212d78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/90212d78be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/90cbe178be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/90cbe178be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/90cbe178be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/b0d98605be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/b0d98605be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/b0d98605be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/e0b17478be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/e0b17478be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/e0b17478be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/50a57a78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/50a57a78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/50a57a78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/50c41807be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/50c41807be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/50c41807be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/8083e306be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/8083e306be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/8083e306be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/f0be1f79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/f0be1f79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/f0be1f79be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/202be378be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/202be378be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/202be378be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/40b17405be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/40b17405be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/40b17405be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/5008a978be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/5008a978be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/5008a978be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/50df1d78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/50df1d78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/50df1d78be71001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/10f10677be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/10f10677be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/10f10677be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/c0d94e05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/c0d94e05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/c0d94e05be71001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e04a5207be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e04a5207be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e04a5207be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e0bab178be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e0bab178be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e0bab178be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/204b3179be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/204b3179be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/204b3179be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/60096277be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/60096277be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/60096277be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/00e4cc78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/00e4cc78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/00e4cc78be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/f0de6d79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/f0de6d79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/f0de6d79be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/20453878be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/20453878be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/20453878be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/70bd0c77be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/70bd0c77be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/70bd0c77be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40840277be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40840277be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40840277be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/c097d006be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/c097d006be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/c097d006be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/90c8de06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/90c8de06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/90c8de06be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/e0a87805be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/e0a87805be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/e0a87805be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/10f17779be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/10f17779be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/10f17779be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/a02a7305be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/a02a7305be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/a02a7305be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/00182907be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/00182907be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/00182907be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/5011e678be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/5011e678be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/5011e678be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/10e3e406be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/10e3e406be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/10e3e406be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/0083f178be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/0083f178be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/0083f178be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/20ebf807be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/20ebf807be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/20ebf807be71001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/505ea607be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/505ea607be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/505ea607be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/a0118007be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/a0118007be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/a0118007be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/6074dc78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/6074dc78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/6074dc78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/10acd376be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/10acd376be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/10acd376be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/606e9507be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/606e9507be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/606e9507be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/60ac6d05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/60ac6d05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/60ac6d05be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/80853607be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/80853607be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/80853607be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/b0eff476be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/b0eff476be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/b0eff476be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/f07d9279be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/f07d9279be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/f07d9279be71001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/40fbaf07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/40fbaf07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/40fbaf07be71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/508c5705be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/508c5705be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/508c5705be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/70e39405be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/70e39405be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/70e39405be71001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/a0adae78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/a0adae78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/a0adae78be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/00336f05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/00336f05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/00336f05be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70014f78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70014f78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70014f78be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70146c07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70146c07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70146c07be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b0358a78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b0358a78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b0358a78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/d014db78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/d014db78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/d014db78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/1013a877be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/1013a877be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/1013a877be71001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/50f32b06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/50f32b06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/50f32b06be71001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/60878805be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/60878805be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/60878805be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/b0080b07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/b0080b07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/b0080b07be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/7027d706be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/7027d706be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/7027d706be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/f0150e07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/f0150e07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/f0150e07be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/d0d29d07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/d0d29d07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/d0d29d07be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f0c3b678be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f0c3b678be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f0c3b678be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/109b6d07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/109b6d07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/109b6d07be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/20633378be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/20633378be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/20633378be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d00c4107be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d00c4107be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d00c4107be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d0de1e07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d0de1e07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d0de1e07be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/00113f07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/00113f07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/00113f07be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/b01cd807be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/b01cd807be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/b01cd807be71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/d0e3b506be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/d0e3b506be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/d0e3b506be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/403f4079be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/403f4079be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/403f4079be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/f0326678be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/f0326678be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/f0326678be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/6088ea06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/6088ea06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/6088ea06be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/00fa2d07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/00fa2d07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/00fa2d07be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/70fa6478be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/70fa6478be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/70fa6478be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/00080207be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/00080207be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/00080207be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/80567178be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/80567178be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/80567178be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/d0ae6879be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/d0ae6879be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/d0ae6879be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/10bcac06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/10bcac06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/10bcac06be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/4084b406be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/4084b406be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/4084b406be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/60976e78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/60976e78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/60976e78be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/e0cf6f78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/e0cf6f78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/e0cf6f78be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/806be107be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/806be107be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/806be107be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/60660879be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/60660879be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/60660879be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/70dd0c07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/70dd0c07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/70dd0c07be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/c057f378be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/c057f378be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/c057f378be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/e0211577be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/e0211577be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/e0211577be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/0027ad78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/0027ad78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/0027ad78be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/303a2207be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/303a2207be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/303a2207be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/90b06b05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/90b06b05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/90b06b05be71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b00b0e79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b00b0e79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b00b0e79be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b052d506be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b052d506be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b052d506be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/e08d8077be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/e08d8077be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/e08d8077be71001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/b0240177be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/b0240177be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/b0240177be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/30a82e78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/30a82e78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/30a82e78be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/50c50906be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/50c50906be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/50c50906be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/d0dfce78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/d0dfce78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/d0dfce78be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/0086e707be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/0086e707be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/0086e707be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/e0af6205be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/e0af6205be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/e0af6205be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/20a90907be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/20a90907be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/20a90907be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/00216607be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/00216607be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/00216607be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/a0e9a478be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/a0e9a478be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/a0e9a478be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/e073dd07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/e073dd07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/e073dd07be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/d0d73407be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/d0d73407be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/d0d73407be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/f00fd478be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/f00fd478be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/f00fd478be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/1052e276be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/1052e276be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/1052e276be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/1090dd06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/1090dd06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/1090dd06be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/e0a9da06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/e0a9da06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/e0a9da06be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/60f25077be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/60f25077be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/60f25077be71001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/20a31006be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/20a31006be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/20a31006be71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/400ac376be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/400ac376be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/400ac376be71001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/40d65905be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/40d65905be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/40d65905be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/5054c678be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/5054c678be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/5054c678be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/704e5d77be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/704e5d77be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/704e5d77be71001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/e046fa76be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/e046fa76be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/e046fa76be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/008f7278be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/008f7278be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/008f7278be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/60dd4407be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/60dd4407be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/60dd4407be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/b0076878be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/b0076878be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/b0076878be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/c087f776be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/c087f776be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/c087f776be71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/80910577be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/80910577be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/80910577be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/d04f6f77be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/d04f6f77be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/d04f6f77be71001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/e0ed6a78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/e0ed6a78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/e0ed6a78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/30868d77be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/30868d77be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/30868d77be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/50b94779be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/50b94779be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/50b94779be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/900ace07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/900ace07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/900ace07be71001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/e0f74a07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/e0f74a07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/e0f74a07be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/10fba578be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/10fba578be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/10fba578be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/608a3d07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/608a3d07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/608a3d07be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/a0dbd078be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/a0dbd078be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/a0dbd078be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/604cf406be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/604cf406be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/604cf406be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/00d0b107be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/00d0b107be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/00d0b107be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/90c64a79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/90c64a79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/90c64a79be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/90f16907be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/90f16907be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/90f16907be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/d090ae06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/d090ae06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/d090ae06be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/30406978be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/30406978be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/30406978be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/304e3d78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/304e3d78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/304e3d78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/3070de78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/3070de78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/3070de78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/60869706be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/60869706be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/60869706be71001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/70934207be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/70934207be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/70934207be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/40146278be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/40146278be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/40146278be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/6092d778be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/6092d778be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/6092d778be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/c0ad3e78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/c0ad3e78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/c0ad3e78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/006e3379be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/006e3379be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/006e3379be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/b0037407be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/b0037407be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/b0037407be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/f08eaa78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/f08eaa78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/f08eaa78be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/60193b07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/60193b07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/60193b07be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/6036d405be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/6036d405be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/6036d405be71001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/609a6407be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/609a6407be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/609a6407be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/20f77907be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/20f77907be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/20f77907be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c024c976be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c024c976be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c024c976be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/60942a79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/60942a79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/60942a79be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/907cc106be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/907cc106be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/907cc106be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/e02a0407be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/e02a0407be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/e02a0407be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/4054fe78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/4054fe78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/4054fe78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/70c00206be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/70c00206be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/70c00206be71001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/c0992307be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/c0992307be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/c0992307be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/601ccd76be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/601ccd76be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/601ccd76be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70b0db05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70b0db05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70b0db05be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70c4a806be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70c4a806be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70c4a806be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/801d7107be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/801d7107be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/801d7107be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/d0c75b77be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/d0c75b77be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/d0c75b77be71001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/d0d8e478be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/d0d8e478be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/d0d8e478be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/30274605be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/30274605be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/30274605be71001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/202fca06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/202fca06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/202fca06be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/e003cc06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/e003cc06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/e003cc06be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/d05b6179be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/d05b6179be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/d05b6179be71001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/f0292978be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/f0292978be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/f0292978be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/40a65507be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/40a65507be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/40a65507be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/e05d0b77be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/e05d0b77be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/e05d0b77be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/f06e5c78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/f06e5c78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/f06e5c78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/f0870106be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/f0870106be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/f0870106be71001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/70d0e878be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/70d0e878be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/70d0e878be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/c0315e07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/c0315e07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/c0315e07be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/80cdfb76be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/80cdfb76be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/80cdfb76be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/f097e778be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/f097e778be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/f097e778be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/00a3ce76be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/00a3ce76be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/00a3ce76be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/d001b106be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/d001b106be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/d001b106be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/3089d176be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/3089d176be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/3089d176be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/b00e9305be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/b00e9305be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/b00e9305be71001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/f0bd6f07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/f0bd6f07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/f0bd6f07be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/80a8c806be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/80a8c806be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/80a8c806be71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/102e5f78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/102e5f78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/102e5f78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/f0754678be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/f0754678be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/f0754678be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/70debc78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/70debc78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/70debc78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/808b7d78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/808b7d78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/808b7d78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/c04b7279be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/c04b7279be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/c04b7279be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/f00c1f77be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/f00c1f77be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/f00c1f77be71001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/10af8878be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/10af8878be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/10af8878be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/80f68677be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/80f68677be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/80f68677be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/c0e3ed06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/c0e3ed06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/c0e3ed06be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/c0ffe376be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/c0ffe376be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/c0ffe376be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/20b3f678be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/20b3f678be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/20b3f678be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60227807be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60227807be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60227807be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60348105be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60348105be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60348105be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/b009bb78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/b009bb78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/b009bb78be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/7009dc06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/7009dc06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/7009dc06be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/70117678be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/70117678be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/70117678be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/c090e606be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/c090e606be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/c090e606be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/00f1f006be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/00f1f006be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/00f1f006be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/00afc078be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/00afc078be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/00afc078be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/10422c79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/10422c79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/10422c79be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/304a4907be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/304a4907be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/304a4907be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/d01a6377be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/d01a6377be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/d01a6377be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/9030a406be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/9030a406be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/9030a406be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/409b1377be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/409b1377be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/409b1377be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/007b5707be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/007b5707be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/007b5707be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/3077c878be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/3077c878be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/3077c878be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/304fe006be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/304fe006be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/304fe006be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/e04b0279be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/e04b0279be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/e04b0279be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/802f7a05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/802f7a05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/802f7a05be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/301c2707be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/301c2707be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/301c2707be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/a0315d05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/a0315d05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/a0315d05be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/90b8b706be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/90b8b706be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/90b8b706be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/b06c2a06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/b06c2a06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/b06c2a06be71001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0fd5978be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0fd5978be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0fd5978be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/6031fc78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/6031fc78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/6031fc78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/b0932179be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/b0932179be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/b0932179be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b050d076be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b050d076be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b050d076be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b0a8df78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b0a8df78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b0a8df78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b0d7a407be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b0d7a407be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b0d7a407be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/4048be06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/4048be06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/4048be06be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/909abc06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/909abc06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/909abc06be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/b0df3e79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/b0df3e79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/b0df3e79be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/f0f5bf06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/f0f5bf06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/f0f5bf06be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/d017d107be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/d017d107be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/d017d107be71001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/604a6079be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/604a6079be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/604a6079be71001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/7088b206be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/7088b206be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/7088b206be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/e064a706be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/e064a706be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/e064a706be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/40c2fd06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/40c2fd06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/40c2fd06be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/303fb906be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/303fb906be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/303fb906be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/00795277be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/00795277be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/00795277be71001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/40a99906be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/40a99906be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/40a99906be71001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/502b3b78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/502b3b78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/502b3b78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/90267607be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/90267607be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/90267607be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/40b85e05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/40b85e05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/40b85e05be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/200bd605be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/200bd605be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/200bd605be71001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/a0ebf778be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/a0ebf778be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/a0ebf778be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/10ccd306be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/10ccd306be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/10ccd306be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/2065c705be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/2065c705be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/2065c705be71001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/60acde07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/60acde07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/60acde07be71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/c0f4c478be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/c0f4c478be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/c0f4c478be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/20658678be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/20658678be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/20658678be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/e0184979be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/e0184979be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/e0184979be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/e0941c07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/e0941c07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/e0941c07be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/3067a178be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/3067a178be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/3067a178be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/90ef1607be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/90ef1607be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/90ef1607be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/d0663207be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/d0663207be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/d0663207be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/40471b78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/40471b78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/40471b78be71001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/90666078be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/90666078be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/90666078be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/70b78478be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/70b78478be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/70b78478be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/c0923907be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/c0923907be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/c0923907be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/60ca2778be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/60ca2778be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/60ca2778be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/d0414d07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/d0414d07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/d0414d07be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/40ac9c78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/40ac9c78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/40ac9c78be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/40607f78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/40607f78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/40607f78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/1040d978be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/1040d978be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/1040d978be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/b03e0806be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/b03e0806be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/b03e0806be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/50f0e706be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/50f0e706be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/50f0e706be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/c0e58e77be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/c0e58e77be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/c0e58e77be71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/d0eda278be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/d0eda278be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/d0eda278be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/f0a9a206be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/f0a9a206be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/f0a9a206be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/80cf0007be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/80cf0007be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/80cf0007be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/80d9ed78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/80d9ed78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/80d9ed78be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/0041b407be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/0041b407be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/0041b407be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/50ab7379be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/50ab7379be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/50ab7379be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/6011ef05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/6011ef05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/6011ef05be71001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/30c48807be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/30c48807be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/30c48807be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/600f5b78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/600f5b78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/600f5b78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0005007be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0005007be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0005007be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/40db6107be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/40db6107be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/40db6107be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/003ebe78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/003ebe78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/003ebe78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/d0cef706be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/d0cef706be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/d0cef706be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30e03007be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30e03007be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30e03007be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f0599e78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f0599e78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f0599e78be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/5043ef06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/5043ef06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/5043ef06be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/60266c78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/60266c78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/60266c78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/c0355278be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/c0355278be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/c0355278be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a0234878be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a0234878be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a0234878be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/d0103578be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/d0103578be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/d0103578be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/70d67077be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/70d67077be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/70d67077be71001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90a79f07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90a79f07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90a79f07be71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/50351b07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/50351b07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/50351b07be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/30c5c776be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/30c5c776be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/30c5c776be71001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/709a2c07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/709a2c07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/709a2c07be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/80b2b578be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/80b2b578be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/80b2b578be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/e0436807be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/e0436807be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/e0436807be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/20f2e207be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/20f2e207be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/20f2e207be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/603e2007be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/603e2007be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/603e2007be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/80502a07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/80502a07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/80502a07be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/90a0b507be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/90a0b507be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/90a0b507be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/e0026a05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/e0026a05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/e0026a05be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/e0a14d78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/e0a14d78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/e0a14d78be71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/40fd5078be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/40fd5078be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/40fd5078be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/b063ed05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/b063ed05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/b063ed05be71001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/601ed206be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/601ed206be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/601ed206be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/90a3f906be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/90a3f906be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/90a3f906be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/20aab978be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/20aab978be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/20aab978be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/f0010079be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/f0010079be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/f0010079be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/8041b378be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/8041b378be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/8041b378be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/00d3f506be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/00d3f506be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/00d3f506be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/b05cc278be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/b05cc278be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/b05cc278be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/c036a2ffbd71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/c036a2ffbd71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0eb5a1158 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/c036a2ffbd71001a1f70833eb9ed7011 @@ -0,0 +1,813 @@ + +#include +#include +#include +#include +#include "include.h" +#include "driverlib/gpio.h" + +#include "Communication/Connection.h" + +#include "Drivers/USB_Communication/USBCDCD.h" +#include "StateMachines/Initialization/PowerOffSequence.h" +#include "StateMachines/Initialization/PowerIdle.h" + +#include "drivers/Flash_Memory/FATFS/ff.h" +#include "drivers/Flash_Memory/FATFS/Control_File_System.h" +#include "drivers/Flash_ram/FlashProgram.h" +#include "drivers/adc_sampling/adc.h" +#include "drivers/Heater/TemperatureSensor.h" +#include "drivers/ADC_Sampling/adc.h" +#include "drivers/Flash_ram/MCU_E2Prom.h" +#include "Drivers/SSI_Comm/Dancer/Dancer.h" + +#include "Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/fan_click.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.h" +#include "drivers/Motors/Motor.h" +#include "drivers/FPGA/FPGA_SPI_Comm.h" +#include "Modules/IFS/ifs.h" +#include "Modules/IDS/ids_ex.h" +#include "Modules/Control/MillisecTask.h" +#include "modules/thread/thread_ex.h" +#include "modules/heaters/heaters_ex.h" +#include +#include +#include "Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.h" +#include "drivers/adc_sampling/adc.h" +#include +#include +#include +#include +#include +#include +#include + + +#include "Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.h" + + + +extern float NumberOfRotationPerPassage; // how many rotations per spool passage + +//#include "graphics_adapter.h" +extern uint8_t Input_Voltage; +extern uint8_t Test_Read_Buf[4]; + +extern uint8_t Head_Fan_PWM_Command[2]; +extern uint16_t Head_Fan_Tach[2]; + +void Stub_ProgressRequest(MessageContainer* requestContainer) +{ + MessageContainer responseContainer; + + ProgressRequest* request = progress_request__unpack(NULL, requestContainer->data.len, requestContainer->data.data); + + //writeLine("Progress Request..."); + + ProgressResponse response = PROGRESS_RESPONSE__INIT; + +// uint8_t high_byte = 0; +// uint8_t low_byte = 0; + + uint8_t addr = 0; + uint8_t port = 0; + uint8_t pin = 0; + uint8_t value= 0; + + if(request->amount == 0x3E9) // set TCA9555 u3 or u4 + { + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay & 0x8000) // bit15 select the chip address + { + addr = I2CExp2_ADDRESS; + } + else + { + addr = I2CExp1_ADDRESS; + } + + if (request->delay & 0x4000) // bit 14 select port 0 or 1 + { + port = D_TCA9555_PORT_1; + } + else + { + port = D_TCA9555_PORT_0; + } + + pin = ((request->delay & 0x0F00) >> 8); // 8..11 + + if (request->delay & 0x0001) + { + value = 1; + } + else + { + value = 0; + } + response.progress = Write_WHS_9555_io_value( addr, port, pin, value); + response.has_progress = true; + } + } + else + if(request->amount == 0x3E8) //&& (request->delay <= 0x0fff))// set WHS Blower speed 0x00-0xfff + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_enable_control_loop( request->delay & 0x1000);//disable control loop: 0=disable 1= enable + Trigger_SetWHSBlowerVoltage (request->delay & 0x0FFF); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E7) // set WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_Set_SetPoint_Q_value((double) request->delay); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E6) // get WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + response.progress = WHS_Get_Volt_Blower_Control(); + //response.progress = 0; + response.has_progress = true; + } + } + // WHS_Get_Volt_Blower_Control + else + if(request->amount == 0x3EA) + { + uint16_t tempu16 = 0; + double temp_double = 0.0; + uint8_t display_byte = 0; + uint16_t A2D_data = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + display_byte = ((request->delay & 0x3000)>>12); + switch (display_byte) + { + case 0: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x0000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(DrierAVERAGE); + break; + case 1: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x1000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(HeadCURRENT); + break; + case 2: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x2000); // + SetLeftDisplayView (DrierAVERAGE); + SetWriteDisplayView(DrierCURRENT); + break; + case 3: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x3000); // + SetLeftDisplayView (HeadCURRENT); + SetWriteDisplayView(DrierCURRENT); + break; + } + + A2D_data = (request->delay & 0x0FFF); + switch(A2D_data )// get A2D + { + case 0: + get_orf_1(&tempu16); + break; + case 1: + get_orf_2(&tempu16); + break; + case 2: + get_orf_3(&tempu16); + break; + case 3: + get_vlev1(&tempu16); + break; + case 4: + get_vlev2(&tempu16); + break; + case 5: + get_gas_out(&tempu16); + break; + case 6: + get_cur_fan(&tempu16); + break; + case 7: + get_cur_vlv1(&tempu16); + break; + case 8: + tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + case 10: + temp_double = get_Q(HEAD_FLOW_METER); + break; + case 12: + temp_double = get_Q(DRIER_FLOW_METER); + break; + case 20: + temp_double = get_average_Q(HEAD_FLOW_METER); //HEAD + break; + case 22: + temp_double = get_average_Q(DRIER_FLOW_METER); //Drier + break; + + case 11: + //get_orf_2(&tempu16); + break; + case 13: + //get_vlev1(&tempu16); + break; + case 14: + //get_vlev2(&tempu16); + break; + case 15: + //get_gas_out(&tempu16); + break; + case 16: + //get_cur_fan(&tempu16); + break; + case 17: + //get_cur_vlv1(&tempu16); + break; + case 18: + //tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + default : + tempu16 = 0x500; //get_cur_vlv2(&tempu16); + break; + } + } + if ((request->delay)<10) + { + response.progress = (double)tempu16; + } + else + { + response.progress = temp_double; + } + response.has_progress = true; + } + else // + if(request->amount == 0x3EB) + { + uint16_t tempu16 = 0; + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay <= 0x03FF) + { + Trigger_WHS_Set_RDAC(request->delay); // 0 -> 0x03FF + } + else + { + //Trigger_WHS_set_Rheostat_to_CLEAN_AIR(); + } + get_gas_out(&tempu16); + } + response.progress = (double)tempu16; + response.has_progress = true; + } + else + if((request->amount == 0xDE) && (request->delay < 8) && (request->delay >= 0)) // read dispenser type + LS status + { + response.progress = ((Dispenser_struct[request->delay].Type) << 8) + Dispenser_struct[request->delay].Status; + response.has_progress = true; + } + else + if(request->amount == 0xAD) //undef AUTO_HOME_DISPENSERS + { + if ((request->delay >=AutoHoming_off )&&(request->delay<=AutoHoming_JobEnd_PowerOn_off )) + IDS_Dispenser_SetAutoHoming_Config(request->delay); + response.progress = 01; + response.has_progress = true; + } + else + if(request->amount == 0xAD1) //Set_Check_Pressure_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Check_Pressure_Bypass"); + response.progress = Set_Check_Pressure_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD2) //Set_Thread_Rockers_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Thread_Rockers_Bypass"); + response.progress = Set_Thread_Rockers_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD3) //Set_Auto_Shutdown_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Shutdown_Bypass"); + response.progress = Set_Auto_Shutdown_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD4) //Set_Auto_Idle_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Idle_Bypass"); + response.progress = Set_Auto_Idle_Bypass(request->delay); + response.has_progress = true; + } + else + if((request->amount == 0x01) && ((request->delay &0x010000) == 0x010000)) //change mode powerset01 + { + response.progress = Power_Step_01_Mode(((request->delay &0x00FF00)>>8), request->delay &0x0000FF); + response.has_progress = true; + } + else + if((request->amount == 0xAB) && (request->delay == 0xAB)) //Get pressure with flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(true); + response.has_progress = true; + + } + else + if((request->amount == 0xAB) && (request->delay == 0x0)) //measured sensor voltage without flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(false); + response.has_progress = true; + + } + else + if((request->amount == 0xAC) && (request->delay == 0xAC)) //VAC + { + response.progress = ReadVAC(); + response.has_progress = true; + + } + else + if(request->amount == 0x0EAD) //Head Card I/O + { + uint8_t Read_Buf[1] = {0}; + uint8_t Write_Buf[2] = {0,0}; + uint8_t Script_Slave_Add = request -> delay >> 16;//Slave address 0x40 / 0x42 / 0x44 / 0x46 + Write_Buf[0] = (request -> delay & 0x00FF00) >> 8;//read/write low/high + /* + ------------------ + | Byte | WR | RD | + ------------------ + | Low | 02 | 00 | + | High | 03 | 01 | + ------------------ + */ + Write_Buf[1] = request -> delay & 0x0000FF;//data to write + + response.has_progress = false; + + Select_Main_Head_Mux_Channel(); + + if(Write_Buf[0] == 0)//Read + { + //Head_Read_IO_Reg(Script_Slave_Add, LOW); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46) + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + + if(Write_Buf[0] == 1)//Read + { + //Head_Read_IO_Reg(Script_Slave_Add, HIGH); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46)//LS + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + /* + if(Write_Buf[0] == 2)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + Head_I2C_EXP2_0x42.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); + } + + //Head_Write_IO_Reg(Script_Slave_Add, LOW); + } + if(Write_Buf[0] == 3)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[1] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + //Head_I2C_EXP2_0x42.uchar[1] = Write_Buf[1]; + Head_I2C_EXP2_0x42.bits.OUTPUT_MAG_DIR = (Write_Buf[1] & 0x01);//control only the magnet + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP3_0x44.uchar[1] = (Write_Buf[1] & 0x0C); + } + //Head_Write_IO_Reg(Script_Slave_Add, HIGH); + } + */ + if(Write_Buf[0] >=0xF0) // write + { + // write , Write_Buf[0] bit number 0..15 , Write_Buf[1] 0 or 1 + Write_Buf[1] = Write_Buf[1] & 0x01; + + Write_Buf[0] &=0x0f; + + if(Script_Slave_Add == 0x40) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP1_0x40.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP1_0x40.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x42) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP2_0x42.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP2_0x42.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); + + if(Write_Buf[1] == 0x01) + Head_I2C_EXP4_0x46.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP4_0x46.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + } + } + else + if(request->amount == 0xFEAD) //functions Head Card I/O + { + Select_Main_Head_Mux_Channel(); + + if((request -> delay & 0xFFF000) == 0xCAF000)//Actuator + { + //HeadCard_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), /*(bool)((request -> delay & 0x10)>>4), */(bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + Trigger_Head_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), (bool)((request -> delay & 0x10)>>4), (bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + //response.progress = HeadCard_Actuators_Status((ACTUATORS)((request -> delay) & 0x100)>>8); + response.has_progress = true; + } + else + if((request -> delay & 0xFF0000) == 0xCA0000)//control all heaters + { + if(request -> delay & 0x01) + { + Disconnect_Mixer_and_12_Heaters_Latch(); + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, TRUE); + Connect_Mixer_and_12_Heaters_Latch(); + } + else + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, FALSE); + } + else + if(request -> delay == 0x0)//return head type + { + response.progress = Head_Type; + response.has_progress = true; + } + + } + else + if((request->amount == 0xFAC0) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + //Head_Fan_PWM_Command[0] = (request->delay & 0xFF) ; + //Test_Head_fan_Click(); + + Trigger_Head_Fan_Control(HEAD_FAN_RIGHT, request->delay & 0xFF); + Task_sleep(2000); + + //response.progress = Fan_Click_Info.Product_ID; + response.progress = Head_Fan_Tach[0]; + response.has_progress = true; + + } + else + if((request->amount == 0xFAC1) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + Trigger_Head_Fan_Control(HEAD_FAN_LEFT, request->delay & 0xFF); + Task_sleep(2000); + response.progress = Head_Fan_Tach[1]; + response.has_progress = true; + } + else + if ((request->amount & 0x0000FFF0) == 0xFAC0) //WHS Fan control + { + uint16_t fan_tacho = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + Trigger_SetWHSFanSpeed(((request->amount & 0x0000000F)-1) , request->delay & 0x000000FF); + Task_sleep(2000); + fan_tacho = WHS_Get_fan_tach( (request->amount & 0x0000000F)-1); + } + response.progress = fan_tacho; + response.has_progress = true; + } + else + if((request->amount == 0x0A) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Initial_Offset_A[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0xB) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Slope_B[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0x5C4E) && (request->delay == 0x5C4E)) //Screw Home Pos dir + { + test_Home_Pos(); + } + else + if((request->amount == 0x100) && (request->delay == 0x100)) //head card PT100 + { + Test_HeadCard_PT100(TEMP_SENSE_ANALOG_DYEINGH_TEMP1); + //response.progress = (double)Test_Read_Buf[0]; + response.progress = (double)Data_ADC_Head; + response.has_progress = true; + } + else + if((request->amount == 0x0D) && (request->delay == 0xEE)) //Dispenser EEprom + { + test_disp_eeprom(0x01,0xA0); + response.progress = OK; + response.has_progress = true; + } + else + if((request->amount == 0xCF) && (request->delay == 0xCF)) //Create File System on the Drive + { +#ifdef WATCHDOG + ROM_WatchdogResetDisable(WATCHDOG0_BASE); + uint32_t timeout = 0xFFFFFFFFU; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + FRESULT iFResult = Init_Flash_File_System(true); + if(iFResult != FR_OK) + { + LOG_ERROR (iFResult, "Error during init Flash File System"); + assert(iFResult); + } +#ifdef WATCHDOG + ROM_WatchdogResetEnable(WATCHDOG0_BASE); + timeout = 120000000*3; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + } + else + if((request->amount == 0x0C) && (request->delay == 0x0C)) //Get Gas Sensor + { + response.progress = (double)Calculate_Gas_Power_Consumption(); + response.has_progress = true; + + } + else + if((request->amount == 0xDD) && (request->delay == 0xDD)) //Read Input Voltage + { + LOG_ERROR(request->delay,"CheckAcInputVoltage"); + CheckAcInputVoltage(); + + response.progress = (double)Input_Voltage; + response.has_progress = true; + } + else + if((request->amount == 0x0CE) && (request->delay == 0x0CE)) //Get Gas Sensor + { + LOG_ERROR(request->delay,"FlashInit"); + FlashInit(); + response.progress = (double)OK; + response.has_progress = true; + + } + else + if(request->amount == 0x0CC) //Cartridge Validation Response Demo + { + LOG_ERROR(request->delay,"ResponseDemo"); + ResponseDemo(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE0) //fast refresh for pressure + { + LOG_ERROR(request->delay,"setRapidPressureRead"); + setRapidPressureRead(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Starting Dispenser PID"); + IDS_Start_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE2) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Stoping Dispenser PID"); + IDS_Stop_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xB1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Set loading arm center"); + Read_Dryer_ENC_Position(); + Task_sleep(500); + Read_Dryer_ENC_Position(); + Task_sleep(500); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CENTER,Read_Dryer_ENC_Position(0,0)); + response.has_progress = true; + } + else + if(request->amount == 0xB2) //Set loading arm cycles + { + LOG_ERROR(request->delay,"Set loading arm cycles"); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CYCLES,request->delay); + response.has_progress = true; + } + + else + if(request->amount == 0xB3) //fast refresh for pressure + { + LOG_ERROR(request->amount,"keep alive test"); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB4) //IDS_Dispenser_Content_Init + { + LOG_ERROR(request->amount,"IDS_Dispenser_Content_Init"); + IDS_Dispenser_Content_Init(); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB5) //fast refresh for pressure + { + if (request->delay<=100) + { + LOG_ERROR(request->delay,"set stub_heating_limit"); + stub_heating_limit = request->delay; + } + response.progress = request->delay; + response.has_progress = true; + + } +#ifdef VAC_TEST + else + if(request->amount == 0xB6) //fast refresh for pressure + { + LOG_ERROR(request->delay,"set vac read test"); + VAC_Test = (double)request->delay; + response.progress = request->delay; + response.has_progress = true; + + } +#endif + + else + if(request->amount == 0xC3) //suspend I2C task + { + if (request->delay == 0) + { + LOG_ERROR(request->delay,"Suspend I2C"); + PowerOffHeatersOff(); + Task_sleep(1000); + Task_setPri (I2C_Task_Handle,-1); + } + else + { + LOG_ERROR(request->delay,"Resume"); + Task_setPri (I2C_Task_Handle,8); + } + response.progress = request->delay; + response.has_progress = true; + + } + else + if((request->amount == 0xDF) && (request->delay == 0xDF)) //Power off + { + PowerOffInit(); + } + else + if(request->amount == 0xF1) + { + LOG_ERROR(request->delay,"NumberOfRotationPerPassage"); + NumberOfRotationPerPassage = (float)(request->delay)/1000; + } + else + { + response.has_progress = true; + int i = 0; + for (i = 0; i < request->amount; i++) + { + response.progress = i; + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, false, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + + int co = 0; + for (co = 0; co < request->delay; co++) + { + __delay_cycles(1000000); + } + } + } + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, true, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + //writeLine("Progress Completed!"); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + return; + +} diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/40125005be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/40125005be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/40125005be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/d021ff06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/d021ff06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/d021ff06be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/d0736378be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/d0736378be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/d0736378be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/f0137a79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/f0137a79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/f0137a79be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/404f6779be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/404f6779be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/404f6779be71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/f04bca78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/f04bca78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/f04bca78be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/604e4707be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/604e4707be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/604e4707be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/d0f23978be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/d0f23978be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/d0f23978be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/6065a677be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/6065a677be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/6065a677be71001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/30971679be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/30971679be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/30971679be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/90430f06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/90430f06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/90430f06be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/e0fce106be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/e0fce106be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/e0fce106be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/807b5678be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/807b5678be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/807b5678be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/002c4478be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/002c4478be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/002c4478be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/f0e8dc05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/f0e8dc05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/f0e8dc05be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/7026e607be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/7026e607be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/7026e607be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/10927e77be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/10927e77be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/10927e77be71001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/80f34278be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/80f34278be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/80f34278be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/f060c905be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/f060c905be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/f060c905be71001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/10db5778be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/10db5778be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/10db5778be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/20ab5c07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/20ab5c07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/20ab5c07be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/a05f7f05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/a05f7f05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/a05f7f05be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/70408977be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/70408977be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/70408977be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/b032d576be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/b032d576be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/b032d576be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/9035fa78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/9035fa78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/9035fa78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/9050f206be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/9050f206be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/9050f206be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/a0546007be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/a0546007be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/a0546007be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/b0e32507be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/b0e32507be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/b0e32507be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index index dfb2fcbe2..f67793ec3 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index index 8093e6421..0b48ca9a5 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index index 55089d454..b23157d64 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index index 0c2cf4641..054719260 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index index fabcea493..68e29cc71 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index index f732aa4f8..ad1e9fac6 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index index 62c1063ee..697287e6d 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index index 75fcb67e7..75c8f5851 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index index 07a964c37..e5e39a075 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index index 8cb730e92..b5760e525 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index index a9bb85c2d..c30264ded 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index index b4cf491ad..6bbf83ba3 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index index 9444d5abb..ca6ad350a 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index index bf2392d51..9c1901d47 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index index 0b99739c7..e2280865f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index index 1525bee99..57985eda2 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index index 063be0028..1eb15bdfe 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index index b6e422f46..b0bb79af6 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index index 1eae7d38d..abe7a3ffe 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index index faee56b70..29766e7e6 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index index 72f1223fc..4ad23418c 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index index 02be526ab..4a9c66f87 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index index 139901f3f..8002b643c 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index index bd11504ac..983feed4a 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index index 9bcebc70d..03ebc2ff5 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index index 15ed99ce0..e75d70933 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index index 4b55de012..18fc3b303 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index index 2d2b6feb5..1bf73a6b6 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index index 1eab45a17..7debcb7aa 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index index 8603dd595..7d3bb4c0b 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index index 2bbc45970..75451da72 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index index 0f803b0f1..52a8221f1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index index 04bdb284e..a1d3d84a8 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index index 2e637044f..10b3ab95a 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index index 3d474dd63..1df34a9e0 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index index d9ccd4dae..8efd3546c 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index index 3816e5025..2799080d0 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index index 1573d7c38..8d526b9b0 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index index 0d3c94eff..520fdb109 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index index 3c3208a27..a07c5e110 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index index 2993cff7f..2650a2730 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index index 3f6bd6e8b..6104212b7 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index index f28f92f7b..793eaf6ad 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index index 24447699a..fd6746e6e 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index index 43f43ac6f..1299371c3 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index index dd17bcffa..3a2c297a9 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index index 091c6f447..6c514c068 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index index 9ada74d06..929bcaef7 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index index b8ef151dc..0913cf810 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index index 2a0ac3ea4..4cb2492f1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index index 2ae394598..16019e666 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index index a19d5539e..f05d01ecf 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index index 56e4f7a68..f146700d1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index index 7d59cdf24..0b0175839 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index index b7d0c8008..e6e6603d4 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index index a8ef4e8e1..fee43529e 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index index 7c1807fca..272e7b57e 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index index 89641a00d..04b6ec5b9 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index index 1caeb46fe..9a85d43e1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index index 41b2e94e1..a9f242e2c 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index index c733e9517..e135ab5ca 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index index 74c48d6e2..cbf106d37 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index index baf186c8b..e2610244a 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index index 1ce7cfea7..2ab62d803 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index index 8d81d023a..23cda58ea 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index index efd198246..b0a2951ab 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index index f523e47b3..e1f81a6e6 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index index 6c41d392d..616fe6521 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index index ebe90f08e..718e1f2ef 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index index 954d84aa6..aafb106cb 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index index 834677549..070b6e661 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index index 3f6b78078..7cb91c8e1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index index 3b74a5814..e9d982b39 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index index 8fd95dccc..21752709b 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index index c04c2d9d0..c4ff9899b 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index index 40dbf0a29..44d964558 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index index 09c1368e3..5e252578f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index index 380dbcfb6..ef9eb306f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index index cfecac8d5..f2857056f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index index 5dcb7bd2f..d45941102 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index index f6fc6c1f5..087d39ac7 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index index f82b3753b..10df6ab55 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index index 007c8eb3c..3c408e71d 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index index 2ef6a7a34..76c8911c1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi b/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi index 866a4d44c..a17cef988 100644 --- a/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi +++ b/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi @@ -1,10 +1,10 @@ - - + + activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration ModelMigrationProcessor.001 activeSchemeId:com.ti.ccstudio.ui.keyBindingScheme - + @@ -13,9 +13,9 @@ topLevel shellMaximized - - - + + + persp.actionSet:org.eclipse.ui.cheatsheets.actionSet persp.actionSet:org.eclipse.rse.core.search.searchActionSet @@ -65,72 +65,72 @@ persp.newWizSC:org.eclipse.rtsc.builddefinitions.dspbios.ui.DSPBIOSCreateNew persp.newWizSC:org.eclipse.rtsc.xdctools.ui.cdt.wizards.configfile.RTSCConfigFileWizard persp.showIn:org.eclipse.tm.terminal.view.ui.TerminalsView - - - - + + + + - - + + - - - - + + + + - - - - - + + + + + - - - - - - - - + + + + + + + + - - - - - + + + + + - - + + - - - + + + - + General C/C++ Team - - - - - - - - - + + + + + + + + + - + persp.actionSet:org.eclipse.ui.cheatsheets.actionSet persp.actionSet:org.eclipse.rse.core.search.searchActionSet @@ -177,48 +177,48 @@ persp.actionSet:com.ti.dvt.rovsupport persp.actionSet:com.ti.dvt.via.plugin.ActionSet persp.showIn:org.eclipse.tm.terminal.view.ui.TerminalsView - - - + + + - - - - + + + + - - - - - + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - + + + - + Analysis Views - + @@ -227,7980 +227,7996 @@ - - - - + + + + - + View categoryTag:Help - + View categoryTag:General - + ViewMenu menuContribution:menu - + - + View categoryTag:Help - - - + + + active - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide active - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.debug.ui.SourceNotFoundEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.ui.cmdFileEditor removeOnHide - + menuContribution:popup popup:#ASMEditorContext popup:com.ti.ccstudio.ui.cmdFileEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#ASMEditorRulerContext popup:com.ti.ccstudio.ui.cmdFileEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + + menuContribution:popup + popup:#OverviewRulerContext + + + menuContribution:popup + popup:#CEditorContext + popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext + popup:#AbstractTextEditorContext + + + menuContribution:popup + popup:#CEditorRulerContext + popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext + popup:#AbstractTextEditorRulerContext + + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.debug.ui.SourceNotFoundEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.debug.ui.SourceNotFoundEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.ui.DefaultTextEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide activeOnClose - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + org.eclipse.e4.primaryDataStack EditorStack - - - + + + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.ui.MessageConsole.#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + - + View categoryTag:Code Composer Studio - + ViewMenu menuContribution:menu - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + ViewMenu menuContribution:menu - + - + View categoryTag:Code Composer Studio - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + - + View categoryTag:Debug - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + - + View categoryTag:Debug - + View categoryTag:Grace - + View categoryTag:RTSC - + ViewMenu menuContribution:menu - + - + View categoryTag:Debug - + View categoryTag:General highlighted - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + - + View categoryTag:Other - + ViewMenu menuContribution:menu - + - + View categoryTag:C/C++ - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.cdt.ui.callHierarchy - + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.ui.views.ProgressView - + menuContribution:popup popup:org.eclipse.ui.views.ProgressView - + menuContribution:popup popup:org.eclipse.ui.views.ProgressView - + - + View categoryTag:C/C++ - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy.members - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy.members - + - + View categoryTag:Analysis Views - + ViewMenu menuContribution:menu - + - + View categoryTag:Team - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.team.ui.GenericHistoryView - + - - + + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - - + + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Draggable - + Draggable - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - - + + Opaque - + Opaque - + Opaque - + Draggable - + Draggable - + toolbarSeparator - + - + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + stretch SHOW_RESTORE_MENU - + Draggable HIDEABLE SHOW_RESTORE_MENU - - + + stretch - + Draggable - + Draggable - - + + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - - + + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration platform:win32 - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration platform:win32 - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - - - - - - - - + + + + + + + + + + + - - - - - + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Editor - + View categoryTag:C/C++ - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Make - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:General - + View categoryTag:Help - + View categoryTag:Connections - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:General - + View categoryTag:General - + View categoryTag:Team - + View categoryTag:Team - + View categoryTag:Terminal - + View categoryTag:Other - + View categoryTag:General - + View categoryTag:General - + View categoryTag:Help - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:General - + View categoryTag:DVT - + View categoryTag:Analysis Views - + View categoryTag:DVT - + View categoryTag:EnergyTrace - + View categoryTag:Analysis Views - + View categoryTag:Profiling - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:UIA - + View categoryTag:Grace - + View categoryTag:Other - + View categoryTag:RTSC - + View categoryTag:RTSC - + View categoryTag:RTSC - - - - - + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - + + + - - - + + + - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c b/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c index 0eb5a1158..7a9b66a0b 100644 --- a/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c +++ b/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c @@ -475,39 +475,37 @@ void Stub_ProgressRequest(MessageContainer* requestContainer) //Head_Write_IO_Reg(Script_Slave_Add, HIGH); } */ - if(Write_Buf[0] >=0xF0) // write - { - // write , Write_Buf[0] bit number 0..15 , Write_Buf[1] 0 or 1 - Write_Buf[1] = Write_Buf[1] & 0x01; - - Write_Buf[0] &=0x0f; - - if(Script_Slave_Add == 0x40) - { - if(Write_Buf[1] == 0x01) - Head_I2C_EXP1_0x40.uchar[0] |= (0x01 << Write_Buf[0]); - else if(Write_Buf[1] == 0x00) - Head_I2C_EXP1_0x40.uchar[0] &= ~(0x01 << Write_Buf[0]); - } - else - if(Script_Slave_Add == 0x42) + if(Write_Buf[0] >=0xF0) // write { - if(Write_Buf[1] == 0x01) - Head_I2C_EXP2_0x42.uchar[0] |= (0x01 << Write_Buf[0]); - else if(Write_Buf[1] == 0x00) - Head_I2C_EXP2_0x42.uchar[0] &= ~(0x01 << Write_Buf[0]); + // write , Write_Buf[0] bit number 0..15 , Write_Buf[1] 0 or 1 + Write_Buf[1] = Write_Buf[1] & 0x01; + + Write_Buf[0] &=0x0f; + + if(Script_Slave_Add == 0x40) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP1_0x40.ushort |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP1_0x40.ushort &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x42) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP2_0x42.ushort |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP2_0x42.ushort &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x46) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP4_0x46.ushort |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP4_0x46.ushort &= ~(0x01 << Write_Buf[0]); + } } - else - if(Script_Slave_Add == 0x46) - { - Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); - - if(Write_Buf[1] == 0x01) - Head_I2C_EXP4_0x46.uchar[0] |= (0x01 << Write_Buf[0]); - else if(Write_Buf[1] == 0x00) - Head_I2C_EXP4_0x46.uchar[0] &= ~(0x01 << Write_Buf[0]); - } - } } else if(request->amount == 0xFEAD) //functions Head Card I/O -- cgit v1.3.1 From d1af5a24303a036cc2ede7e7c3c0c7b0036016e7 Mon Sep 17 00:00:00 2001 From: Shlomo Hecht Date: Sun, 29 Mar 2020 19:57:58 +0300 Subject: evb support + inlock on flash actions --- Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA.c | 9 +-- .../Embedded/Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c | 73 ++++++++++++++++++++-- .../Embedded_SW/Embedded/Drivers/Heater/Heater.c | 4 ++ .../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c | 3 +- .../Head_Card/EEPROM/Head_EEPROM.c | 2 + .../Embedded_SW/Embedded/Drivers/Valves/Valve.c | 8 +++ .../Embedded/Drivers/flash_ram/FlashProgram.c | 6 +- .../Embedded/Drivers/flash_ram/MCU_E2Prom.c | 25 +++++++- Software/Embedded_SW/Embedded/Embedded.cfg | 1 + Software/Embedded_SW/Embedded/Main.c | 2 + .../Embedded/Modules/Control/MillisecTask.c | 4 +- .../Embedded/Modules/Stubs_Handler/Stub_Motor.c | 2 +- 12 files changed, 125 insertions(+), 14 deletions(-) (limited to 'Software/Embedded_SW/Embedded/Modules') diff --git a/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA.c b/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA.c index e2e71c4cc..21056e162 100644 --- a/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA.c +++ b/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA.c @@ -370,11 +370,11 @@ void Control_Dryer_Fan_PWM(uint8_t PWM_Command_Precent)// 0 - 100% if(PWM_Command_Precent > 100) PWM_Command_Precent = 100; - +#ifndef EVALUATION_BOARD GPO_BLOWER_PWM_FREQ = Freq; GPO_BLOWER_PWM_LOW = PWM_Command_Precent + 1; GPO_BLOWER_PWM_HIGH = 101 - PWM_Command_Precent; - +#endif // low + high = 0xFF in order use the same freq (and change the freq only by Add 0x112). // there is option to change only the high (low + freq constasnt) this will chnga the freq } @@ -424,7 +424,8 @@ void Set_Speed_Sensor_TypeII_Registers(uint32_t Counter, uint32_t Prescaler) uint32_t Read_Speed_Sensor_TypeII()//must be delay between Set_Speed_Sensor_TypeII_Registers to Read_Speed_Sensor_TypeII { - uint32_t Speed_Hz, temp, temp1; + uint32_t Speed_Hz = 0, temp, temp1; +#ifndef EVALUATION_BOARD temp = F1_Tacho_reg9; temp1 = FPGA_Freq; @@ -432,7 +433,7 @@ uint32_t Read_Speed_Sensor_TypeII()//must be delay between Set_Speed_Sensor_Type temp1/=temp; temp1/=F1_Prescaler1_reg6; Speed_Hz = temp1; - +#endif #warning change the speed from Hz to Cm/Sec return Speed_Hz; diff --git a/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c b/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c index 00b48d3d8..f8f0fb4c6 100644 --- a/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c +++ b/Software/Embedded_SW/Embedded/Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c @@ -124,6 +124,7 @@ LS_DRYER_DH Ls_Dryer_Dh; void FPGA_Read_LS_Safty_Ind_Reg() { // uint8_t temp[8] = {0,0,0,0,0,0,0,0},i; +#ifndef EVALUATION_BOARD LS_Left.ushort = F1_GPI_LS2_D; Ls_Right_Screw_Spool.ushort = F1_GPI_LS3_D; @@ -154,6 +155,7 @@ void FPGA_Read_LS_Safty_Ind_Reg() Dispenser_struct[i].Status = LS_STATUS_OK; } */ +#endif } bool Check_Disp_Safety_Stop_Indication(uint8_t Dispenser_ID)//0..7 @@ -162,6 +164,7 @@ bool Check_Disp_Safety_Stop_Indication(uint8_t Dispenser_ID)//0..7 assert(Dispenser_ID < MAX_DISPENSER_NUM); +#ifndef EVALUATION_BOARD switch(Dispenser_ID) { case 0: @@ -191,6 +194,7 @@ bool Check_Disp_Safety_Stop_Indication(uint8_t Dispenser_ID)//0..7 default: break; } +#endif return Safety_Indication; } @@ -505,15 +509,19 @@ MOT_SW1 F1_Mot_Dr_SW1; uint32_t ActivateCoolerPump() //WHS - Pump the waste accumulated in cooler to the waste tank { +#ifndef EVALUATION_BOARD F1_Mot_Dr_SW1.bits.GPO_DH_MAGNET = ON; //TBD verify polarity F1_Moto_Driver_SW1 = F1_Mot_Dr_SW1.ushort; +#endif return OK; } uint32_t DeActivateCoolerPump() //WHS - Pump the waste accumulated in cooler to the waste tank { +#ifndef EVALUATION_BOARD F1_Mot_Dr_SW1.bits.GPO_DH_MAGNET = OFF; //TBD verify polarity F1_Moto_Driver_SW1 = F1_Mot_Dr_SW1.ushort; +#endif return OK; } uint32_t MagnetControlId = 0xFF; @@ -544,8 +552,10 @@ uint32_t ActivateHeadMagnet() Trigger_Head_Magnet(CLOSE_MAGNET); else { +#ifndef EVALUATION_BOARD F2_CTRL_Reg.ushort &= ~SPARE_SSR13_CTRL; F2_CTRL = F2_CTRL_Reg.ushort; +#endif } if (isMotorConfigured(HARDWARE_MOTOR_TYPE__MOTO_RLOADARM)) { @@ -575,8 +585,10 @@ uint32_t DeActivateHeadMagnet() } else { +#ifndef EVALUATION_BOARD F2_CTRL_Reg.ushort |= SPARE_SSR13_CTRL; F2_CTRL = F2_CTRL_Reg.ushort; +#endif } Report("DeActivateHeadMagnet - open the lid magnet",__FILE__,__LINE__,(int)HARDWARE_MOTOR_TYPE__MOTO_RLOADARM,RpWarning,(int)DH_LID_CLOSE,0); if (isMotorConfigured(HARDWARE_MOTOR_TYPE__MOTO_RLOADARM)) @@ -594,7 +606,11 @@ uint32_t DeActivateHeadMagnet() uint32_t ReadHeadMagnetBit() { +#ifndef EVALUATION_BOARD return (F2_CTRL & BIT0);//SSR13 is not in the WD therefore it it possible to read the bit +#else + return 0; +#endif } uint32_t DeActivateAllSSR() @@ -729,39 +745,66 @@ F3_GPI_01 F3_GPI_01_Reg; void WHS_Read_GPI_Registers() { +#ifndef EVALUATION_BOARD F2_GPI_Reg.ushort = F2_GPI_REGISTER1_Direct; F3_GPI_01_Reg.ushort = F3_GPI_01_D; +#endif } bool WHS_GPI_CHILLER_FAULT() { +#ifndef EVALUATION_BOARD return F2_GPI_Reg.bits.F2_GPI_CHILLER_FAULT; +#else + return false; +#endif + } bool WHS_GPI_WASTE_OVERFULL()//waste tank overflow { //#warning NA need to check the DISP_SAFETY_STOP_IND of all the connected dispensers done +#ifndef EVALUATION_BOARD return F2_GPI_Reg.bits.F2_WASTE_OVERFULL_NO; +#else + return false; +#endif } bool WHS_GPI_SW_FILTER_PRES() { +#ifndef EVALUATION_BOARD return F3_GPI_01_Reg.bits.F3_GPI_SW_FILTER_PRES; +#else + return false; +#endif } bool WHS_GPI_WCONTAINER_FULL()//waste tank full { +#ifndef EVALUATION_BOARD return F3_GPI_01_Reg.bits.F3_GPI_WCONTAINER_FULL; +#else + return false; +#endif } bool WHS_GPI_WCONTAINER_WARN()//waste tank empty { +#ifndef EVALUATION_BOARD return F3_GPI_01_Reg.bits.F3_GPI_WCONTAINER_WARN; +#else + return false; +#endif } bool WHS_GPI_WASTE_FLOW_SWITCH()// DRyer air { +#ifndef EVALUATION_BOARD return F2_GPI_Reg.bits.F2_WASTE_FLOW_SW_NO; +#else + return false; +#endif } uint8_t GPO_Waste_Pressure_Software_Stop(uint8_t TrueToStop) @@ -769,6 +812,7 @@ uint8_t GPO_Waste_Pressure_Software_Stop(uint8_t TrueToStop) //GPO_SPARE1_1 (New BP: DISP_SAFETY_STOP_INPUT) Connected to WASTE_PRESS_SW and Stop from MCU uint8_t Status = OK; +#ifndef EVALUATION_BOARD switch(TrueToStop) { case true: @@ -781,6 +825,7 @@ uint8_t GPO_Waste_Pressure_Software_Stop(uint8_t TrueToStop) Status = ERROR; break; } +#endif return Status; } @@ -789,6 +834,7 @@ bool Get_COVER_1_State(COVERS_ENUM CoverId) { assert (CoverId VALVE_DISPENSER_8) return ERROR; +#ifdef EVALUATION_BOARD + return OK; +#endif VALVE_BUSY_REG Valve_Busy_Reg; Valve_Busy_Reg.ushort = F2_DISPENSER_VALVE_IN_Direct; @@ -346,7 +352,9 @@ void EnableDisableDispenserValve(Valves_t Valve_Id, bool EnableOrDisable ) break; } +#ifndef EVALUATION_BOARD F2_DISPENSER_VALVE_OUT = Dispenser_Valve_GPO_Reg.ushort; +#endif } // diff --git a/Software/Embedded_SW/Embedded/Drivers/flash_ram/FlashProgram.c b/Software/Embedded_SW/Embedded/Drivers/flash_ram/FlashProgram.c index 240585e43..5daec00ed 100644 --- a/Software/Embedded_SW/Embedded/Drivers/flash_ram/FlashProgram.c +++ b/Software/Embedded_SW/Embedded/Drivers/flash_ram/FlashProgram.c @@ -104,7 +104,9 @@ uint32_t ReadAppAndProgram(uint32_t ui32FlashStart,uint32_t ui32FileSize,void* b // block passed to the flash function must be divisible by 4. // - status = FlashProgram((uint32_t *)ui32BufferAddr, ui32ProgAddr,(ui32DataSize + 3) & ~3); + ROM_IntMasterDisable(); + status = ROM_FlashProgram((uint32_t *)ui32BufferAddr, ui32ProgAddr,(ui32DataSize + 3) & ~3); + ROM_IntMasterEnable(); if (status) Report("FlashProgram Error", __FILE__,status,ui32ProgAddr , RpMessage, (ui32DataSize + 3) & ~3, 0); @@ -161,9 +163,11 @@ void FlashInit(void) if (RxIndex++>=MAX_CONT_LOG) RxIndex = 0; #endif + ROM_IntMasterDisable(); for(ui32Idx = FLASH_RAM_BASE; ui32Idx < FLASH_RAM_BASE+FLASH_SIZE; ui32Idx += 1024) { FlashErase(ui32Idx); } + ROM_IntMasterEnable(); } diff --git a/Software/Embedded_SW/Embedded/Drivers/flash_ram/MCU_E2Prom.c b/Software/Embedded_SW/Embedded/Drivers/flash_ram/MCU_E2Prom.c index dd55f4f91..2ebcbc130 100644 --- a/Software/Embedded_SW/Embedded/Drivers/flash_ram/MCU_E2Prom.c +++ b/Software/Embedded_SW/Embedded/Drivers/flash_ram/MCU_E2Prom.c @@ -27,8 +27,11 @@ uint32_t MCU_E2PromProgram(int Address,uint32_t Data) } Report("MCU_E2PromProgram",__FILE__,__LINE__,Address,RpWarning,Data,0); - +#ifdef EVALUATION_BOARD + return 0; +#else return (EEPROMProgram((uint32_t *)&Buffer, Address*4, 4)); +#endif } uint32_t MCU_E2PromRead(int Address,uint32_t *Data) { @@ -37,7 +40,9 @@ uint32_t MCU_E2PromRead(int Address,uint32_t *Data) Report("MCU_E2PromRead Error",__FILE__,__LINE__,Address,RpWarning,*Data,0); return ERROR; } +#ifndef EVALUATION_BOARD EEPROMRead((uint32_t *)Data,Address*4, 4); +#endif Report("MCU_E2PromRead",__FILE__,__LINE__,Address,RpWarning,*Data,0); return OK; @@ -52,13 +57,17 @@ void MCU_E2PromProgramMidTank(int midtankId,float a,float b) A = a; Report("MCU_E2PromProgramMidTank",__FILE__,midtankId,Address,RpWarning,(int)(a*1000),0); +#ifndef EVALUATION_BOARD EEPROMProgram((uint32_t *)&A, Address*4, 4); +#endif Address = EEPROM_STORAGE_MIDTANK_1_B+2*midtankId; B = b; Report("MCU_E2PromProgramMidTank",__FILE__,midtankId,Address,RpWarning,(int)(b*1000),0); +#ifndef EVALUATION_BOARD EEPROMProgram((uint32_t *)&B, Address*4, 4); +#endif } float MCU_E2PromReadMidtank_A(int MidtankId) { @@ -69,7 +78,9 @@ float MCU_E2PromReadMidtank_A(int MidtankId) Report("MCU_E2PromReadMidtank error",__FILE__,__LINE__,Address,RpWarning,(int)MidtankId,0); return ERROR; } +#ifndef EVALUATION_BOARD EEPROMRead((uint32_t *)&Data,Address*4, 4); +#endif Report("MCU_E2PromRead",__FILE__,__LINE__,Address,RpWarning,(int)(Data*1000),0); return (Data); @@ -83,7 +94,9 @@ float MCU_E2PromReadMidtank_B(int MidtankId) Report("MCU_E2PromReadMidtank error",__FILE__,__LINE__,Address,RpWarning,(int)MidtankId,0); return ERROR; } +#ifndef EVALUATION_BOARD EEPROMRead((uint32_t *)&Data,Address*4, 4); +#endif Report("MCU_E2PromRead",__FILE__,__LINE__,Address,RpWarning,(int)(Data*1000),0); return (Data); @@ -124,13 +137,17 @@ uint32_t MCU_E2PromDryerBacklashProgram(char *Data) Report("MCU_E2PromDryerBacklashProgram length error",__FILE__,__LINE__,len,RpWarning,(int)0,0); return ERROR; } +#ifndef EVALUATION_BOARD EEPROMProgram((uint32_t *)Backlash, EEPROM_STORAGE_DRYER_BACKLASH*4, 4); +#endif return OK; } float MCU_E2PromDryerBacklashRead() { float Data; +#ifndef EVALUATION_BOARD EEPROMRead((uint32_t *)&Data,EEPROM_STORAGE_DRYER_BACKLASH*4, 4); +#endif Report("MCU_E2PromDryerBacklashRead length ",__FILE__,__LINE__,EEPROM_STORAGE_DRYER_BACKLASH*4,RpWarning,(int)(Data*100),0); @@ -147,13 +164,17 @@ uint32_t MCU_E2PromEmbeddedVersionProgram(void) return ERROR; } memcpy((uint8_t*)&Data,&_gTangoVersion,size); +#ifndef EVALUATION_BOARD EEPROMProgram((uint32_t *)&Data, EEPROM_STORAGE_EMBEDDED_VERSION*4, 4); +#endif return OK; } uint32_t MCU_E2PromEmbeddedVersionRead() { uint32_t Data; +#ifndef EVALUATION_BOARD EEPROMRead((uint32_t *)&Data,EEPROM_STORAGE_EMBEDDED_VERSION*4, 4); +#endif Report("MCU_E2PromEmbeddedVersionRead length ",__FILE__,__LINE__,EEPROM_STORAGE_EMBEDDED_VERSION*4,RpWarning,(int)(Data),0); @@ -165,6 +186,8 @@ uint32_t MCU_E2PromEmbeddedVersionRead() //twice before FlashErase is called. void MCU_E2PromInit(void) { +#ifndef EVALUATION_BOARD EEPROMInit(); +#endif } diff --git a/Software/Embedded_SW/Embedded/Embedded.cfg b/Software/Embedded_SW/Embedded/Embedded.cfg index a9a958a55..016bacc9c 100644 --- a/Software/Embedded_SW/Embedded/Embedded.cfg +++ b/Software/Embedded_SW/Embedded/Embedded.cfg @@ -2,6 +2,7 @@ var Hwi = xdc.useModule('ti.sysbios.family.arm.m3.Hwi'); var Clock = xdc.useModule('ti.sysbios.knl.Clock'); var Seconds = xdc.useModule('ti.sysbios.hal.Seconds'); var BIOS = xdc.useModule('ti.sysbios.BIOS'); +BIOS.libType = BIOS.LibType_Debug; var SysMin = xdc.useModule('xdc.runtime.SysMin'); var System = xdc.useModule('xdc.runtime.System'); var Error = xdc.useModule('xdc.runtime.Error'); diff --git a/Software/Embedded_SW/Embedded/Main.c b/Software/Embedded_SW/Embedded/Main.c index 2a1913b0a..551caa544 100644 --- a/Software/Embedded_SW/Embedded/Main.c +++ b/Software/Embedded_SW/Embedded/Main.c @@ -357,7 +357,9 @@ int main(void) IDLE_TASK_package_init(); +#ifndef EVALUATION_BOARD Start_InitSequence(); +#endif PowerIdleInit(); BIOS_start(); diff --git a/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.c b/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.c index 52775b6ab..a5421e60a 100644 --- a/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.c +++ b/Software/Embedded_SW/Embedded/Modules/Control/MillisecTask.c @@ -150,7 +150,7 @@ void MillisecInit(void) System_abort("Could not create USB Wait gate"); } - ROM_SysCtlPeripheralEnable(SYSCTL_PERIPH_TIMER0); + ROM_SysCtlPeripheralEnable(SYSCTL_PERIPH_TIMER1); ROM_TimerConfigure(Millisec_timerBase, TIMER_CFG_PERIODIC); // 32 bits Timer //TimerIntRegister(Millisec_timerBase, TIMER_A, Timer0Isr); // Registering isr ROM_TimerEnable(Millisec_timerBase, TIMER_A); @@ -636,7 +636,9 @@ uint32_t MillisecLowLoop(uint32_t tick) if (Hundred_msTick) { Speed_Data = Calculate_Speed_Sensor_Velocity(); +#ifndef EVALUATION_BOARD Read_Buttons_Reg(); +#endif //Ink_Cart_Led(); /////////////////////////////////////////////////////////////////// diff --git a/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Stub_Motor.c b/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Stub_Motor.c index 1c39385d4..1663219bd 100644 --- a/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Stub_Motor.c +++ b/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Stub_Motor.c @@ -283,13 +283,13 @@ void Stub_MotorStopRequest(MessageContainer* requestContainer) Stop_Command = (STOP_TYPE_ENUM)request->stop_cmd; + TimerMotors_t Motor_Id = (TimerMotors_t)request->motor_id; //to remove warning #ifdef EVALUATION_BOARD uint32_t read_status; //SPI_Control(SKIP_INIT); Mot_Stop(); #else - TimerMotors_t Motor_Id = (TimerMotors_t)request->motor_id; //to remove warning MotorStop(Motor_Id, Stop_Command); #endif if ((Motor_Id >= HARDWARE_MOTOR_TYPE__MOTO_DISPENSER_1)&&(Motor_Id <= HARDWARE_MOTOR_TYPE__MOTO_DISPENSER_8)) -- cgit v1.3.1